blob: ca3d2cd7fb7d934e9eaa3603947aeaf4e476a956 [file] [log] [blame]
aimitakeshi27ed8ad2010-07-29 10:12:27 +09001#
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#
16LOCAL_PATH:= $(call my-dir)
17include $(CLEAR_VARS)
18
19LOCAL_SRC_FILES:= \
20 DrmConstraints.cpp \
Takeshi Aimi34738462010-11-16 13:56:11 +090021 DrmMetadata.cpp \
aimitakeshi27ed8ad2010-07-29 10:12:27 +090022 DrmConvertedStatus.cpp \
23 DrmEngineBase.cpp \
24 DrmInfo.cpp \
25 DrmInfoRequest.cpp \
26 DrmInfoStatus.cpp \
27 DrmRights.cpp \
28 DrmSupportInfo.cpp \
aimitakeshi27ed8ad2010-07-29 10:12:27 +090029 IDrmManagerService.cpp \
30 IDrmServiceListener.cpp \
31 DrmInfoEvent.cpp \
32 ReadWriteUtils.cpp
33
Christopher Wiley0572c6e2016-04-12 14:34:34 -070034LOCAL_STATIC_LIBRARIES := libbinder
35
aimitakeshi27ed8ad2010-07-29 10:12:27 +090036LOCAL_C_INCLUDES := \
James Dong559bf282012-03-28 10:29:14 -070037 $(TOP)/frameworks/av/include \
38 $(TOP)/frameworks/av/drm/libdrmframework/include \
39 $(TOP)/frameworks/av/drm/libdrmframework/plugins/common/include
aimitakeshi27ed8ad2010-07-29 10:12:27 +090040
41LOCAL_MODULE:= libdrmframeworkcommon
42
Jean-Baptiste Queru0335b702010-09-10 12:46:57 -070043LOCAL_MODULE_TAGS := optional
44
aimitakeshi27ed8ad2010-07-29 10:12:27 +090045include $(BUILD_STATIC_LIBRARY)