Bug: 37512442 Test: mmm -j50 vendor/widevine/libwvdrmengine/ Change-Id: I45b06b7f14ca4f65031bbc3806808a191156ee7b
137 lines
3.3 KiB
Plaintext
137 lines
3.3 KiB
Plaintext
//
|
|
// Copyright (C) 2017 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.
|
|
//
|
|
|
|
cc_binary {
|
|
name: "android.hardware.drm@1.0-service.widevine",
|
|
proprietary: true,
|
|
owner: "widevine",
|
|
relative_install_path: "hw",
|
|
srcs: ["src_hidl/service.cpp"],
|
|
init_rc: ["src_hidl/android.hardware.drm@1.0-service.widevine.rc"],
|
|
static_libs: [
|
|
"libwvdrmdrmplugin",
|
|
],
|
|
header_libs: [
|
|
"liboemcrypto_libwvdrmengine_local",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.drm@1.0",
|
|
"libbase",
|
|
"libbinder",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
"libwvhidl",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libwvdrmengine",
|
|
relative_install_path: "mediadrm",
|
|
owner: "widevine",
|
|
proprietary: true,
|
|
srcs: [
|
|
"src/WVCDMSingleton.cpp",
|
|
"src/WVCreatePluginFactories.cpp",
|
|
"src/WVCryptoFactory.cpp",
|
|
"src/WVDrmFactory.cpp",
|
|
"src/WVUUID.cpp",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
static_libs: [
|
|
"libcdm",
|
|
"libcdm_protos",
|
|
"libcdm_utils",
|
|
"libcrypto_static",
|
|
"libjsmn",
|
|
"libwvdrmcryptoplugin",
|
|
"libwvdrmdrmplugin",
|
|
"libwvlevel3",
|
|
],
|
|
header_libs: [
|
|
"liboemcrypto_libwvdrmengine_local",
|
|
],
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
"libprotobuf-cpp-lite",
|
|
"libstagefright_foundation",
|
|
"libutils",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libwidevinehidl_utils",
|
|
srcs: ["src_hidl/TypeConvert.cpp"],
|
|
export_include_dirs: ["include_hidl"],
|
|
shared_libs: ["android.hardware.drm@1.0"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libwvhidl",
|
|
owner: "widevine",
|
|
proprietary: true,
|
|
srcs: [
|
|
"src/WVCDMSingleton.cpp",
|
|
"src/WVUUID.cpp",
|
|
"src_hidl/WVCreatePluginFactories.cpp",
|
|
"src_hidl/WVCryptoFactory.cpp",
|
|
"src_hidl/WVDrmFactory.cpp",
|
|
],
|
|
include_dirs: [
|
|
"vendor/widevine/libwvdrmengine/include",
|
|
],
|
|
export_include_dirs: ["include_hidl"],
|
|
static_libs: [
|
|
"libcdm",
|
|
"libcdm_protos",
|
|
"libcdm_utils",
|
|
"libcrypto_static",
|
|
"libjsmn",
|
|
"libwvdrmcryptoplugin_hidl",
|
|
"libwvdrmdrmplugin_hidl",
|
|
"libwvlevel3",
|
|
],
|
|
whole_static_libs: [
|
|
"libwidevinehidl_utils",
|
|
],
|
|
header_libs: [
|
|
"liboemcrypto_libwvdrmengine_local",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.drm@1.0",
|
|
"android.hidl.memory@1.0",
|
|
"libcutils",
|
|
"libhidlbase",
|
|
"libhidlmemory",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libprotobuf-cpp-lite",
|
|
"libutils",
|
|
],
|
|
}
|
|
|
|
subdirs = [
|
|
"cdm",
|
|
"level3",
|
|
"mediacrypto",
|
|
"mediadrm",
|
|
"oemcrypto",
|
|
"test/unit",
|
|
"third_party/stringencoders",
|
|
"vts/vendor_module",
|
|
]
|