38 lines
1009 B
Python
38 lines
1009 B
Python
# ==============================================================================
|
|
# Structure
|
|
# ==============================================================================
|
|
#
|
|
# This BUILD file must expose the following build targets so that the test/BUILD
|
|
# file can link against it:
|
|
#
|
|
# test_aead_whitebox : The target for testing the AEAD white-box.
|
|
#
|
|
# general_license_whitebox: The target for testing the license white-box.
|
|
#
|
|
# uat_license_whitebox : The target for testing the license white-box against
|
|
# licenses from Widevine's UAT server.
|
|
|
|
package(default_visibility = [
|
|
"//visibility:private",
|
|
])
|
|
|
|
cc_library(
|
|
name = "test_aead_whitebox",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "general_license_whitebox",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "uat_license_whitebox",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "license_whitebox_provider_keys_test_data",
|
|
visibility = ["//visibility:public"],
|
|
)
|