Revert submission 29489024-pixel_tablet_mediadrm Reason for revert: DroidMonitor: Potential culprit for http://b/369192150 - Verifying through ABTD before submission. Reverted changes: /q/submissionid:29489024-pixel_tablet_mediadrm Change-Id: I3c1c31b871275bf2b5ceb93120918f749f828cd1
55 lines
1.4 KiB
Text
55 lines
1.4 KiB
Text
// ----------------------------------------------------------------------------
|
|
// Builds android.hardware.drm-service.castkey
|
|
//
|
|
// TODO(b/366426322): Merge these targets into `device/google/gs-common`.
|
|
|
|
soong_namespace {
|
|
}
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "device_google_tangorpro_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["device_google_tangorpro_license"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.drm-service.castkey",
|
|
defaults: ["castkey_service_defaults"],
|
|
srcs: ["Service.cpp"],
|
|
init_rc: ["android.hardware.drm-service.castkey.rc"],
|
|
vintf_fragments: ["manifest_android.hardware.drm-service.castkey.xml"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "castkey_service_defaults",
|
|
vendor: true,
|
|
proprietary: true,
|
|
srcs: [
|
|
"CreatePluginFactories.cpp",
|
|
"DrmFactory.cpp",
|
|
"DrmPlugin.cpp",
|
|
"SessionLibrary.cpp",
|
|
],
|
|
|
|
relative_install_path: "hw",
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
include_dirs: [
|
|
"device/google/tangorpro/cast_auth/mediadrm/include",
|
|
],
|
|
|
|
shared_libs: [
|
|
"android.hardware.drm-V1-ndk",
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
}
|