blob: 83794ac4899777d27496695897a2f2e49f214684 [file] [log] [blame]
Jeff Tinkerb075caa2016-12-06 23:15:20 -08001# Copyright (C) 2016, The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18LOCAL_MODULE := android.hardware.drm.crypto@1.0-impl
19LOCAL_MODULE_RELATIVE_PATH := hw
20LOCAL_SRC_FILES := \
21 CryptoFactory.cpp \
22 CryptoPlugin.cpp \
23 TypeConvert.cpp \
24
25LOCAL_SHARED_LIBRARIES := \
26 libhidlbase \
27 libhidltransport \
28 libhwbinder \
29 libhidlmemory \
30 libutils \
31 liblog \
32 libmediadrm \
33 libstagefright_foundation \
34 android.hardware.drm.crypto@1.0 \
35 android.hidl.memory@1.0
36
37LOCAL_C_INCLUDES := \
38 frameworks/native/include \
39 frameworks/av/include
40
41include $(BUILD_SHARED_LIBRARY)