[LSC] Add LOCAL_LICENSE_KINDS to vendor/widevine
Added SPDX-license-identifier-Apache-2.0 legacy_by_exception_only to: Android.bp libwvdrmengine/Android.bp libwvdrmengine/vts/vendor_module/Android.bp Added legacy_by_exception_only to: libwvdrmengine/cdm/Android.bp libwvdrmengine/cdm/core/src/Android.bp libwvdrmengine/cdm/core/test/Android.bp libwvdrmengine/cdm/metrics/src/Android.bp libwvdrmengine/cdm/test/integration-test.mk libwvdrmengine/cdm/test/unit-test.mk libwvdrmengine/level3/Android.bp libwvdrmengine/mediacrypto/Android.bp libwvdrmengine/mediacrypto/test/Android.mk libwvdrmengine/mediadrm/Android.bp libwvdrmengine/mediadrm/test/Android.mk libwvdrmengine/oemcrypto/odk/Android.bp libwvdrmengine/oemcrypto/odk/test/fuzzing/Android.bp libwvdrmengine/oemcrypto/odk/test/fuzzing/corpus_generator/Android.bp libwvdrmengine/oemcrypto/test/Android.mk libwvdrmengine/test/unit/Android.mk libwvdrmengine/tools/metrics_dump/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: I41ef520b6e394a7708f453a706e6ef1a5f46c36a
This commit is contained in:
45
Android.bp
Normal file
45
Android.bp
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
//
|
||||||
|
// Copyright (C) 2021 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.
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
|
// Added automatically by a large-scale-change that took the approach of
|
||||||
|
// 'apply every license found to every target'. While this makes sure we respect
|
||||||
|
// every license restriction, it may not be entirely correct.
|
||||||
|
//
|
||||||
|
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
|
||||||
|
//
|
||||||
|
// Please consider splitting the single license below into multiple licenses,
|
||||||
|
// taking care not to lose any license_kind information, and overriding the
|
||||||
|
// default license using the 'licenses: [...]' property on targets as needed.
|
||||||
|
//
|
||||||
|
// For unused files, consider creating a 'fileGroup' with "//visibility:private"
|
||||||
|
// to attach the license to, and including a comment whether the files may be
|
||||||
|
// used in the current project.
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
license {
|
||||||
|
name: "vendor_widevine_license",
|
||||||
|
visibility: [":__subpackages__"],
|
||||||
|
license_kinds: [
|
||||||
|
"SPDX-license-identifier-Apache-2.0",
|
||||||
|
"legacy_by_exception_only", // by exception only
|
||||||
|
],
|
||||||
|
// large-scale-change unable to identify any license_text files
|
||||||
|
}
|
||||||
@@ -41,6 +41,19 @@
|
|||||||
// However, restorecon is not implemented for /vendor/bin, so we put
|
// However, restorecon is not implemented for /vendor/bin, so we put
|
||||||
// the script in /system/bin.
|
// the script in /system/bin.
|
||||||
//
|
//
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// SPDX-license-identifier-Apache-2.0
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
sh_binary {
|
sh_binary {
|
||||||
name: "move_widevine_data",
|
name: "move_widevine_data",
|
||||||
src: "move_widevine_data.sh",
|
src: "move_widevine_data.sh",
|
||||||
|
|||||||
@@ -2,6 +2,18 @@
|
|||||||
// Builds libcdm.a
|
// Builds libcdm.a
|
||||||
//
|
//
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
SRC_DIR = "src"
|
SRC_DIR = "src"
|
||||||
CORE_SRC_DIR = "core/src"
|
CORE_SRC_DIR = "core/src"
|
||||||
METRICS_SRC_DIR = "metrics/src"
|
METRICS_SRC_DIR = "metrics/src"
|
||||||
|
|||||||
@@ -1,3 +1,32 @@
|
|||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
default_applicable_licenses: [
|
||||||
|
"vendor_widevine_libwvdrmengine_cdm_core_src_license",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
// Added automatically by a large-scale-change
|
||||||
|
//
|
||||||
|
// large-scale-change included anything that looked like it might be a license
|
||||||
|
// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
|
||||||
|
//
|
||||||
|
// Please consider removing redundant or irrelevant files from 'license_text:'.
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
license {
|
||||||
|
name: "vendor_widevine_libwvdrmengine_cdm_core_src_license",
|
||||||
|
visibility: [":__subpackages__"],
|
||||||
|
license_kinds: [
|
||||||
|
"legacy_by_exception_only", // by exception only
|
||||||
|
],
|
||||||
|
license_text: [
|
||||||
|
"license.cpp",
|
||||||
|
"license_key_status.cpp",
|
||||||
|
"license_protocol.proto",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library {
|
cc_library {
|
||||||
|
|
||||||
name: "libcdm_protos",
|
name: "libcdm_protos",
|
||||||
|
|||||||
@@ -12,6 +12,36 @@
|
|||||||
// See the License for the specific language governing permissions and$
|
// See the License for the specific language governing permissions and$
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
default_applicable_licenses: [
|
||||||
|
"vendor_widevine_libwvdrmengine_cdm_core_test_license",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
// Added automatically by a large-scale-change
|
||||||
|
//
|
||||||
|
// large-scale-change included anything that looked like it might be a license
|
||||||
|
// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
|
||||||
|
//
|
||||||
|
// Please consider removing redundant or irrelevant files from 'license_text:'.
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
license {
|
||||||
|
name: "vendor_widevine_libwvdrmengine_cdm_core_test_license",
|
||||||
|
visibility: [":__subpackages__"],
|
||||||
|
license_kinds: [
|
||||||
|
"legacy_by_exception_only", // by exception only
|
||||||
|
],
|
||||||
|
license_text: [
|
||||||
|
"license_keys_unittest.cpp",
|
||||||
|
"license_request.cpp",
|
||||||
|
"license_request.h",
|
||||||
|
"license_unittest.cpp",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
filegroup {
|
filegroup {
|
||||||
name: "vts_cdm_core_test_srcs",
|
name: "vts_cdm_core_test_srcs",
|
||||||
srcs: [
|
srcs: [
|
||||||
|
|||||||
@@ -13,6 +13,18 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
// Build host library for metrics_dump tool.
|
// Build host library for metrics_dump tool.
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_host_shared {
|
cc_library_host_shared {
|
||||||
|
|
||||||
name: "libcdm_metrics_protos_full_host",
|
name: "libcdm_metrics_protos_full_host",
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ $(call assert-not-null,test_name)
|
|||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
LOCAL_MODULE := $(test_name)
|
LOCAL_MODULE := $(test_name)
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
LOCAL_SRC_FILES := \
|
LOCAL_SRC_FILES := \
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ $(call assert-not-null,test_name)
|
|||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
LOCAL_MODULE := $(test_name)
|
LOCAL_MODULE := $(test_name)
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
LOCAL_SRC_FILES := \
|
LOCAL_SRC_FILES := \
|
||||||
|
|||||||
@@ -12,6 +12,18 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libwvlevel3",
|
name: "libwvlevel3",
|
||||||
cflags: [
|
cflags: [
|
||||||
|
|||||||
@@ -15,6 +15,18 @@
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// Builds libwvdrmcryptoplugin
|
// Builds libwvdrmcryptoplugin
|
||||||
//
|
//
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libwvdrmcryptoplugin",
|
name: "libwvdrmcryptoplugin",
|
||||||
|
|
||||||
|
|||||||
@@ -45,6 +45,8 @@ LOCAL_C_INCLUDES += \
|
|||||||
external/protobuf/src \
|
external/protobuf/src \
|
||||||
|
|
||||||
LOCAL_MODULE := libwvdrmmediacrypto_test
|
LOCAL_MODULE := libwvdrmmediacrypto_test
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
@@ -117,6 +119,8 @@ LOCAL_C_INCLUDES += \
|
|||||||
external/protobuf/src \
|
external/protobuf/src \
|
||||||
|
|
||||||
LOCAL_MODULE := libwvdrmmediacrypto_hidl_test
|
LOCAL_MODULE := libwvdrmmediacrypto_hidl_test
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,18 @@
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// Builds libwvdrmdrmplugin
|
// Builds libwvdrmdrmplugin
|
||||||
//
|
//
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libwvdrmdrmplugin",
|
name: "libwvdrmdrmplugin",
|
||||||
|
|
||||||
|
|||||||
@@ -48,6 +48,8 @@ LOCAL_C_INCLUDES += \
|
|||||||
external/protobuf/src \
|
external/protobuf/src \
|
||||||
|
|
||||||
LOCAL_MODULE := libwvdrmdrmplugin_test
|
LOCAL_MODULE := libwvdrmdrmplugin_test
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
@@ -121,6 +123,8 @@ LOCAL_C_INCLUDES += \
|
|||||||
external/protobuf/src \
|
external/protobuf/src \
|
||||||
|
|
||||||
LOCAL_MODULE := libwvdrmdrmplugin_hidl_test
|
LOCAL_MODULE := libwvdrmdrmplugin_hidl_test
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
@@ -182,6 +186,8 @@ LOCAL_C_INCLUDES += \
|
|||||||
external/protobuf/src \
|
external/protobuf/src \
|
||||||
|
|
||||||
LOCAL_MODULE := hidl_metrics_adapter_unittest
|
LOCAL_MODULE := hidl_metrics_adapter_unittest
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
@@ -196,4 +202,3 @@ LOCAL_MODULE_TARGET_ARCH := arm x86 mips
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
include $(BUILD_EXECUTABLE)
|
include $(BUILD_EXECUTABLE)
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,18 @@
|
|||||||
// ----------------------------------------------------------------
|
// ----------------------------------------------------------------
|
||||||
// Builds libwv_odk.a, The ODK Library (libwv_odk) is used by
|
// Builds libwv_odk.a, The ODK Library (libwv_odk) is used by
|
||||||
// the CDM and by oemcrypto implementations.
|
// the CDM and by oemcrypto implementations.
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_static {
|
cc_library_static {
|
||||||
name: "libwv_odk",
|
name: "libwv_odk",
|
||||||
include_dirs: [
|
include_dirs: [
|
||||||
|
|||||||
@@ -2,6 +2,18 @@
|
|||||||
// source code may only be used and distributed under the Widevine Master
|
// source code may only be used and distributed under the Widevine Master
|
||||||
// License Agreement.
|
// License Agreement.
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_defaults {
|
cc_defaults {
|
||||||
name: "odk_fuzz_library_defaults",
|
name: "odk_fuzz_library_defaults",
|
||||||
srcs: [
|
srcs: [
|
||||||
|
|||||||
@@ -9,6 +9,18 @@
|
|||||||
// ----------------------------------------------------------------
|
// ----------------------------------------------------------------
|
||||||
// Builds libwv_odk.so, The ODK shared Library (libwv_odk) is used
|
// Builds libwv_odk.so, The ODK shared Library (libwv_odk) is used
|
||||||
// by the OEMCrypto unit tests to generate corpus for ODK fuzz scrips.
|
// by the OEMCrypto unit tests to generate corpus for ODK fuzz scrips.
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_shared {
|
cc_library_shared {
|
||||||
name: "libwv_odk_corpus_generator",
|
name: "libwv_odk_corpus_generator",
|
||||||
include_dirs: [
|
include_dirs: [
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ LOCAL_C_INCLUDES := \
|
|||||||
vendor/widevine/libwvdrmengine/cdm/util/include \
|
vendor/widevine/libwvdrmengine/cdm/util/include \
|
||||||
|
|
||||||
LOCAL_MODULE:=oemcrypto_test
|
LOCAL_MODULE:=oemcrypto_test
|
||||||
|
LOCAL_LICENSE_KINDS:=legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS:=by_exception_only
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
LOCAL_MODULE_OWNER := widevine
|
LOCAL_MODULE_OWNER := widevine
|
||||||
|
|||||||
@@ -33,6 +33,8 @@ LOCAL_HEADER_LIBRARIES := \
|
|||||||
libstagefright_foundation_headers \
|
libstagefright_foundation_headers \
|
||||||
|
|
||||||
LOCAL_MODULE := libwvdrmengine_test
|
LOCAL_MODULE := libwvdrmengine_test
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
@@ -90,6 +92,8 @@ LOCAL_HEADER_LIBRARIES := \
|
|||||||
libstagefright_foundation_headers \
|
libstagefright_foundation_headers \
|
||||||
|
|
||||||
LOCAL_MODULE := libwvdrmengine_hidl_test
|
LOCAL_MODULE := libwvdrmengine_hidl_test
|
||||||
|
LOCAL_LICENSE_KINDS := legacy_by_exception_only
|
||||||
|
LOCAL_LICENSE_CONDITIONS := by_exception_only
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := tests
|
LOCAL_MODULE_TAGS := tests
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,18 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_binary_host {
|
cc_binary_host {
|
||||||
name: "metrics_dump",
|
name: "metrics_dump",
|
||||||
proprietary: true,
|
proprietary: true,
|
||||||
|
|||||||
@@ -16,6 +16,19 @@
|
|||||||
// Builds libvtswidevine.so
|
// Builds libvtswidevine.so
|
||||||
//
|
//
|
||||||
|
|
||||||
|
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
||||||
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
||||||
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
||||||
|
package {
|
||||||
|
// See: http://go/android-license-faq
|
||||||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||||||
|
// all of the 'license_kinds' from "vendor_widevine_license"
|
||||||
|
// to get the below license kinds:
|
||||||
|
// SPDX-license-identifier-Apache-2.0
|
||||||
|
// legacy_by_exception_only (by exception only)
|
||||||
|
default_applicable_licenses: ["vendor_widevine_license"],
|
||||||
|
}
|
||||||
|
|
||||||
cc_library_shared {
|
cc_library_shared {
|
||||||
name: "libvtswidevine",
|
name: "libvtswidevine",
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user