From 8abba2607b150f1c514fa57bbb95439e6f5865d1 Mon Sep 17 00:00:00 2001 From: nelsonli Date: Wed, 11 Sep 2019 11:49:04 +0800 Subject: [PATCH] [vts-core] add copy rules for *-gsi.avbpubkey For using Gtest to run vts_security_avb_test and test it in the vts-core, we have to add this rule to copy the *-gsi.avbpubkey to the testcase folder. Bug: 132702215 Test: 1. add data: "q-gsi.avbpubkey" to Android.bp of the module 2. m module_name Change-Id: I810231f39c970da4d2b8ab63daeee02379c7f952 --- rootdir/avb/Android.bp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 rootdir/avb/Android.bp diff --git a/rootdir/avb/Android.bp b/rootdir/avb/Android.bp new file mode 100644 index 000000000..85d27861d --- /dev/null +++ b/rootdir/avb/Android.bp @@ -0,0 +1,20 @@ +filegroup { + name: "q-gsi_avbpubkey", + srcs: [ + "q-gsi.avbpubkey", + ], +} + +filegroup { + name: "r-gsi_avbpubkey", + srcs: [ + "r-gsi.avbpubkey", + ], +} + +filegroup { + name: "s-gsi_avbpubkey", + srcs: [ + "s-gsi.avbpubkey", + ], +}