diff options
| author | 2024-01-18 05:58:16 +0000 | |
|---|---|---|
| committer | 2024-01-18 05:58:16 +0000 | |
| commit | f164d10bb58cf80b51e36a784518ea7c7f3173e6 (patch) | |
| tree | b9cad72c1b10ec6d193278e8bf29c6bf9c50f4bb | |
| parent | 23fd84a3fa90f1641a607b2a4fe7b407bee4cd48 (diff) | |
| parent | a23f2afc279262c6d81fc7412fa4d7d4c67f41c8 (diff) | |
Merge "Make the current.txt available for use by the /vendor tests" into main
| -rw-r--r-- | test-base/Android.bp | 3 | ||||
| -rw-r--r-- | test-runner/Android.bp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/test-base/Android.bp b/test-base/Android.bp index 527159a78ebf..70a95400bd9e 100644 --- a/test-base/Android.bp +++ b/test-base/Android.bp @@ -120,12 +120,13 @@ filegroup { path: "src", } -// Make the current.txt available for use by the cts/tests/signature tests. +// Make the current.txt available for use by the cts/tests/signature and /vendor tests. // ======================================================================== filegroup { name: "android-test-base-current.txt", visibility: [ "//cts/tests/signature/api", + "//vendor:__subpackages__", ], srcs: [ "api/current.txt", diff --git a/test-runner/Android.bp b/test-runner/Android.bp index 13a5dac9eb38..21e09d3221ce 100644 --- a/test-runner/Android.bp +++ b/test-runner/Android.bp @@ -79,12 +79,13 @@ java_library { ], } -// Make the current.txt available for use by the cts/tests/signature tests. +// Make the current.txt available for use by the cts/tests/signature and /vendor tests. // ======================================================================== filegroup { name: "android-test-runner-current.txt", visibility: [ "//cts/tests/signature/api", + "//vendor:__subpackages__", ], srcs: [ "api/current.txt", |