aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2010 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | LOCAL_PATH:= $(call my-dir) |
| 17 | |
| 18 | include $(CLEAR_VARS) |
| 19 | |
| 20 | LOCAL_SRC_FILES:= \ |
| 21 | DrmManagerClientImpl.cpp \ |
Adam Lesinski | 927634a | 2014-06-04 15:14:03 -0700 | [diff] [blame^] | 22 | DrmManagerClient.cpp \ |
| 23 | NoOpDrmManagerClientImpl.cpp |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 24 | |
| 25 | LOCAL_MODULE:= libdrmframework |
| 26 | |
| 27 | LOCAL_SHARED_LIBRARIES := \ |
| 28 | libutils \ |
Adam Lesinski | 927634a | 2014-06-04 15:14:03 -0700 | [diff] [blame^] | 29 | libcutils \ |
Ying Wang | da0dc0a | 2013-04-09 21:53:49 -0700 | [diff] [blame] | 30 | liblog \ |
Jeff Brown | 5e0067b | 2011-07-11 22:12:16 -0700 | [diff] [blame] | 31 | libbinder \ |
| 32 | libdl |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 33 | |
| 34 | LOCAL_STATIC_LIBRARIES := \ |
| 35 | libdrmframeworkcommon |
| 36 | |
| 37 | LOCAL_C_INCLUDES += \ |
James Dong | 559bf28 | 2012-03-28 10:29:14 -0700 | [diff] [blame] | 38 | $(TOP)/frameworks/av/drm/libdrmframework/include \ |
| 39 | $(TOP)/frameworks/av/include |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 40 | |
Iliyan Malchev | 9691a73 | 2011-03-14 14:02:13 -0700 | [diff] [blame] | 41 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 42 | |
Jean-Baptiste Queru | 0335b70 | 2010-09-10 12:46:57 -0700 | [diff] [blame] | 43 | LOCAL_MODULE_TAGS := optional |
| 44 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 45 | include $(BUILD_SHARED_LIBRARY) |
| 46 | |
| 47 | include $(call all-makefiles-under,$(LOCAL_PATH)) |