Files
whitebox/whitebox-impl/impl/BUILD
Jacob Trimble e54d7da9eb Update partner repo
This updates the partner repo to match the internal version, including
the following changes:
- Adds a WB_RESULT_NOT_IMPLEMENTED error code
- Add a flag to control new features (e.g. entitlement support).
- Updates tests to match new expectations
2022-03-17 15:41:27 -07:00

33 lines
897 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"],
)