diff options
author | Paul Duffin <paulduffin@google.com> | 2019-06-03 08:10:42 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-06-03 08:10:42 -0700 |
commit | b5d6cc540c619a1dad8650c56b26380d8eee8205 (patch) | |
tree | 4824024960bd8427412fc8f67c646e7901f7cde9 /test-base | |
parent | 58d4e7304cfce68e338ab34022a0b29d45f42c38 (diff) | |
parent | 0a45ac29288e766eb7e7541728cc19468f80dc45 (diff) |
Merge "Export some api files for use by cts/tests/signature tests"
am: 0a45ac2928
Change-Id: I30442a6cffb6428ba4382fbe86d601423a019ab2
Diffstat (limited to 'test-base')
-rw-r--r-- | test-base/Android.bp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test-base/Android.bp b/test-base/Android.bp index 8aa0aaf363dd..69c296e7ee9c 100644 --- a/test-base/Android.bp +++ b/test-base/Android.bp @@ -25,7 +25,7 @@ java_sdk_library { srcs: ["src/**/*.java"], errorprone: { - javacflags: ["-Xep:DepAnn:ERROR"], + javacflags: ["-Xep:DepAnn:ERROR"], }, hostdex: true, @@ -96,3 +96,14 @@ java_library_static { ], } +// Make the current.txt available for use by the cts/tests/signature tests. +// ======================================================================== +filegroup { + name: "android-test-base-current.txt", + visibility: [ + "//cts/tests/signature/api", + ], + srcs: [ + "api/current.txt", + ], +} |