1fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
2fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# Copyright (C) 2010 The Android Open Source Project
3fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
4fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# Licensed under the Apache License, Version 2.0 (the "License");
5fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# you may not use this file except in compliance with the License.
6fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# You may obtain a copy of the License at
7fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
8fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#      http://www.apache.org/licenses/LICENSE-2.0
9fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
10fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# Unless required by applicable law or agreed to in writing, software
11fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# distributed under the License is distributed on an "AS IS" BASIS,
12fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# See the License for the specific language governing permissions and
14fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# limitations under the License.
15fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
16fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_PATH:= $(call my-dir)
17fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
18fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbeherainclude $(CLEAR_VARS)
19fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
20fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_SRC_FILES := \
21fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    src/MimeTypeUtil.cpp
22fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
23fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_MODULE := libdrmutility
24fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
25559bf2836f5da25b75bfb229fec0d20d540ee426James Dongbase := frameworks/av
26fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
27fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_C_INCLUDES += \
28fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    $(base)/include \
29fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    $(base)/include/drm \
30fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    $(base)/include/drm/plugins \
31fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    $(LOCAL_PATH)/include
32fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
33fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
34fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbeheraifneq ($(TARGET_BUILD_VARIANT),user)
35fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_C_INCLUDES += \
36fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    $(LOCAL_PATH)/tools
37fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
38fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbeheraendif
39fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
40fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_MODULE_TAGS := optional
41fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
42fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbeherainclude $(BUILD_STATIC_LIBRARY)
43