From bf65a62cb9015a4db68edb1509127ab5df62ad82 Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Fri, 31 Mar 2023 17:36:57 -0700 Subject: [PATCH] Add filegroup of certificates This is needed for bazel to depend on all certificates from a different package. Bug: 269577299 Test: See other cl Change-Id: I4eeb0b892400fa6bd90080c7e10e9fb762d3b7db --- target/product/security/BUILD.bazel | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 target/product/security/BUILD.bazel diff --git a/target/product/security/BUILD.bazel b/target/product/security/BUILD.bazel new file mode 100644 index 0000000000..08c1944fe8 --- /dev/null +++ b/target/product/security/BUILD.bazel @@ -0,0 +1,7 @@ +filegroup( + name = "android_certificate_directory", + srcs = glob([ + "*.pk8", + "*.pem", + ]), +)