Add entitlement support for offline and migrate WORKSPACE

This commit is contained in:
Jacob Trimble
2025-01-17 23:55:54 +00:00
parent 77a33b906a
commit 5da305d9de
30 changed files with 253 additions and 320 deletions

View File

@@ -26,7 +26,7 @@ cc_test(
name = "aead_whitebox_test",
size = "small",
deps = [
"@whitebox_api//api:aead_whitebox_test",
"@whitebox//api:aead_whitebox_test",
"//impl:test_aead_whitebox",
],
)
@@ -35,7 +35,7 @@ cc_test(
name = "aead_whitebox_benchmark",
size = "small",
deps = [
"@whitebox_api//api:aead_whitebox_benchmark",
"@whitebox//api:aead_whitebox_benchmark",
"//impl:test_aead_whitebox",
],
)
@@ -48,7 +48,7 @@ cc_test(
name = "license_whitebox_test",
size = "small",
deps = [
"@whitebox_api//api:license_whitebox_test",
"@whitebox//api:license_whitebox_test",
"//impl:general_license_whitebox",
],
)
@@ -57,7 +57,7 @@ cc_test(
name = "remote_attestation_and_verification_test",
size = "small",
deps = [
"@whitebox_api//api:remote_attestation_and_verification_test",
"@whitebox//api:remote_attestation_and_verification_test",
"//impl:general_license_whitebox",
],
)
@@ -66,7 +66,7 @@ cc_test(
name = "license_whitebox_benchmark",
size = "small",
deps = [
"@whitebox_api//api:license_whitebox_benchmark",
"@whitebox//api:license_whitebox_benchmark",
"//impl:general_license_whitebox",
],
)
@@ -75,7 +75,7 @@ cc_test(
name = "license_whitebox_uat_test",
size = "small",
deps = [
"@whitebox_api//api:license_whitebox_uat_test",
"@whitebox//api:license_whitebox_uat_test",
"//impl:uat_license_whitebox",
],
)
@@ -88,8 +88,8 @@ cc_binary(
name = "license_whitebox_main",
testonly = True,
deps = [
"@whitebox_api//api:license_whitebox_main",
"//impl:test_license_whitebox",
"@whitebox//api:license_whitebox_main",
"//impl:general_license_whitebox",
"//impl:license_whitebox_provider_keys_test_data"
],
)