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-runner | |
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-runner')
-rw-r--r-- | test-runner/Android.bp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test-runner/Android.bp b/test-runner/Android.bp index 35212020be7b..75f5b5a96eb1 100644 --- a/test-runner/Android.bp +++ b/test-runner/Android.bp @@ -40,7 +40,7 @@ java_sdk_library { "junit.textui", ], - compile_dex: true + compile_dex: true, } // Build the android.test.runner-minus-junit library @@ -86,3 +86,14 @@ java_library_static { java_version: "1.8", } +// Make the current.txt available for use by the cts/tests/signature tests. +// ======================================================================== +filegroup { + name: "android-test-runner-current.txt", + visibility: [ + "//cts/tests/signature/api", + ], + srcs: [ + "api/current.txt", + ], +} |