Files
android/libwvdrmengine/vts/vendor_module/Android.bp
Baligh Uddin fa9ce28dd3 Cleanup references to system/core/base -> system/libbase
BUG: 157656545
Test: TH
Change-Id: I3412348b28b56b13702af14ce77238fac506efdd
2020-10-25 18:23:39 +00:00

58 lines
1.5 KiB
Plaintext

// Copyright (C) 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.
// ----------------------------------------------------------------
// Builds libvtswidevine.so
//
cc_library_shared {
name: "libvtswidevine",
include_dirs: [
"hardware/interfaces/drm/1.0/vts/functional",
"vendor/widevine/libwvdrmengine/cdm/include",
"vendor/widevine/libwvdrmengine/cdm/core/include",
"vendor/widevine/libwvdrmengine/cdm/core/test",
"vendor/widevine/libwvdrmengine/cdm/util/include",
"system/libhidl/base/include",
"system/libbase/include",
"system/libvintf/include",
],
srcs: [
"factory.cpp",
"vts_module.cpp",
":vts_cdm_core_test_srcs",
],
static_libs: [
"libgtest",
"libcdm",
"libcdm_utils",
],
shared_libs: [
"libbase",
"libcrypto",
"liblog",
"libssl",
"libutils",
],
relative_install_path: "drm-vts-test-libs",
proprietary: true,
}