diff options
| author | 2023-10-06 12:00:32 -0700 | |
|---|---|---|
| committer | 2023-10-06 12:01:02 -0700 | |
| commit | 10b31340a68de559cb64c42bb6d3a918180dd904 (patch) | |
| tree | c7676fd898f76c510755b479b62d9d9cedab72c6 | |
| parent | affbb8d206d8150cae474183d25d203696246fbe (diff) | |
Denylist genrules that fail to build with sandboxing
These were added with the android 14 release.
Bug: 290816499
Test: run genrule_sandbox_test.py with a local change to check all genrules in the tree
Change-Id: Icf3627c245638ab3f73b83e24ef04c916d7ab58b
| -rw-r--r-- | genrule/allowlists.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/genrule/allowlists.go b/genrule/allowlists.go index 3e92706a0..9647a18a4 100644 --- a/genrule/allowlists.go +++ b/genrule/allowlists.go @@ -17,6 +17,7 @@ package genrule var ( DepfileAllowList = []string{ "depfile_allowed_for_test", + "tflite_support_metadata_schema", "tflite_support_spm_config", "tflite_support_spm_encoder_config", "gen_uwb_core_proto", @@ -249,6 +250,13 @@ var ( "ue_unittest_erofs_imgs", "vts_vndk_abi_dump_zip", "atest_integration_fake_src", + "VehicleServerProtoStub_cc@2.0-grpc-trout", + "VehicleServerProtoStub_cc@default-grpc", + "VehicleServerProtoStub_h@default-grpc", + "VehicleServerProtoStub_h@2.0-grpc-trout", + "chre_atoms_log.h", + "checkIn-service-stub-lite", + "seller-frontend-service-stub-lite", } SandboxingDenyPathList = []string{ |