Home | History | Annotate | Download | only in default
      1 #
      2 # Copyright (C) 2016 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 
     17 ############# Build legacy drm service ############
     18 
     19 LOCAL_PATH := $(call my-dir)
     20 
     21 include $(CLEAR_VARS)
     22 LOCAL_MODULE := android.hardware.drm@1.0-service
     23 LOCAL_INIT_RC := android.hardware.drm@1.0-service.rc
     24 LOCAL_PROPRIETARY_MODULE := true
     25 LOCAL_MODULE_RELATIVE_PATH := hw
     26 LOCAL_SRC_FILES := \
     27   service.cpp \
     28 
     29 LOCAL_SHARED_LIBRARIES := \
     30   android.hardware.drm@1.0 \
     31   android.hidl.memory@1.0 \
     32   libhidlbase \
     33   libhidltransport \
     34   libhardware \
     35   liblog \
     36   libutils \
     37   libbinder \
     38 
     39 LOCAL_C_INCLUDES := \
     40   hardware/interfaces/drm
     41 
     42 # TODO(b/18948909) Some legacy DRM plugins only support 32-bit. They need to be
     43 # migrated to 64-bit. Once all of a device's legacy DRM plugins support 64-bit,
     44 # that device can turn on TARGET_ENABLE_MEDIADRM_64 to build this service as
     45 # 64-bit.
     46 ifneq ($(TARGET_ENABLE_MEDIADRM_64), true)
     47 LOCAL_32_BIT_ONLY := true
     48 endif
     49 
     50 include $(BUILD_EXECUTABLE)
     51 
     52 ############# Build legacy drm impl library ############
     53 
     54 include $(CLEAR_VARS)
     55 LOCAL_MODULE := android.hardware.drm@1.0-impl
     56 LOCAL_PROPRIETARY_MODULE := true
     57 LOCAL_MODULE_RELATIVE_PATH := hw
     58 LOCAL_SRC_FILES := \
     59     DrmFactory.cpp \
     60     DrmPlugin.cpp \
     61     CryptoFactory.cpp \
     62     CryptoPlugin.cpp \
     63     LegacyPluginPath.cpp \
     64     TypeConvert.cpp \
     65 
     66 LOCAL_SHARED_LIBRARIES := \
     67     android.hardware.drm@1.0 \
     68     android.hidl.memory@1.0 \
     69     libcutils \
     70     libhidlbase \
     71     libhidlmemory \
     72     libhidltransport \
     73     liblog \
     74     libmediadrm \
     75     libstagefright_foundation \
     76     libutils \
     77 
     78 LOCAL_C_INCLUDES := \
     79     frameworks/native/include \
     80     frameworks/av/include
     81 
     82 # TODO: Some legacy DRM plugins only support 32-bit. They need to be migrated to
     83 # 64-bit. (b/18948909) Once all of a device's legacy DRM plugins support 64-bit,
     84 # that device can turn on TARGET_ENABLE_MEDIADRM_64 to build this impl as
     85 # 64-bit.
     86 ifneq ($(TARGET_ENABLE_MEDIADRM_64), true)
     87 LOCAL_32_BIT_ONLY := true
     88 endif
     89 
     90 include $(BUILD_SHARED_LIBRARY)
     91