blob: cbdab4ffe0c832977353cb174946cc5a9a00c0dd [file] [log] [blame]
// Copyright (C) 2016-2020 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "hardware_interfaces_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["hardware_interfaces_license"],
}
cc_library_static {
name: "[email protected]",
vendor_available: true,
defaults: ["hidl_defaults"],
srcs: [
"SharedLibrary.cpp",
],
cflags: [
"-Werror",
"-Wextra",
"-Wall",
"-Wthread-safety",
],
shared_libs: [
"liblog",
],
header_libs: [
"libutils_headers",
],
export_header_lib_headers: [
"libutils_headers",
],
export_include_dirs: ["include"],
}
soong_config_module_type {
name: "android_hardware_drm_1_0_multilib",
module_type: "cc_defaults",
config_namespace: "ANDROID",
bool_variables: ["TARGET_ENABLE_MEDIADRM_64"],
properties: ["compile_multilib"],
}
android_hardware_drm_1_0_multilib {
name: "[email protected]",
compile_multilib: "prefer32",
soong_config_variables: {
TARGET_ENABLE_MEDIADRM_64: {
compile_multilib: "both",
},
},
}
android_hardware_drm_1_0_multilib {
name: "[email protected]",
compile_multilib: "prefer32",
soong_config_variables: {
TARGET_ENABLE_MEDIADRM_64: {
compile_multilib: "first",
},
},
}
cc_defaults {
name: "[email protected]",
proprietary: true,
relative_install_path: "hw",
include_dirs: ["hardware/interfaces/drm"],
header_libs: ["media_plugin_headers"],
static_libs: ["[email protected]"],
shared_libs: [
"[email protected]",
"[email protected]",
"libhidlbase",
"libhardware",
"liblog",
"libutils",
"libbinder",
],
}
//############ Build legacy drm service ############
cc_binary {
name: "[email protected]",
defaults: [
"[email protected]",
"[email protected]",
],
init_rc: ["[email protected]"],
srcs: ["service.cpp"],
}
//############ Build legacy drm lazy service ############
cc_binary {
name: "[email protected]",
defaults: [
"[email protected]",
"[email protected]",
],
overrides: ["[email protected]"],
init_rc: ["[email protected]"],
srcs: ["serviceLazy.cpp"],
}
//############ Build legacy drm impl library ############
cc_library_shared {
name: "[email protected]",
defaults: ["[email protected]"],
proprietary: true,
relative_install_path: "hw",
include_dirs: [
"frameworks/native/include",
"frameworks/av/include",
],
shared_libs: [
"[email protected]",
"[email protected]",
"libcutils",
"libhidlbase",
"libhidlmemory",
"liblog",
"libstagefright_foundation",
"libutils",
],
static_libs: ["[email protected]"],
srcs: [
"DrmFactory.cpp",
"DrmPlugin.cpp",
"CryptoFactory.cpp",
"CryptoPlugin.cpp",
"LegacyPluginPath.cpp",
"TypeConvert.cpp",
],
}