diff options
author | 2019-05-30 15:12:47 +0100 | |
---|---|---|
committer | 2019-06-03 11:56:35 +0100 | |
commit | cd35de35075dfe8ad086be1e52da39d286b7d45e (patch) | |
tree | 20d01416968c3696e0713ec7798b54d99e48c122 /Android.bp | |
parent | 95ae9c0b370ca9048d16e67c0d11ae54ca84ed7c (diff) |
Export some api files for use by cts/tests/signature tests
Creates a filegroup for each of these files:
* api/current.txt
* api/system-current.txt
* api/system-removed.txt
* test-base/api/current.txt
* test-mock/api/current.txt
* test-runner/api/current.txt
Bug: 122332514
Test: atest -p cts/tests/signature
Change-Id: Ib031dcc39d3c1cca6dcdf977c0277d5e4875591e
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 126b763bc54f..b27003964125 100644 --- a/Android.bp +++ b/Android.bp @@ -1102,6 +1102,24 @@ filegroup { ], } +// Make the api/system-current.txt file available for use by modules in other +// directories. +filegroup { + name: "frameworks-base-api-system-current.txt", + srcs: [ + "api/system-current.txt", + ], +} + +// Make the api/system-removed.txt file available for use by modules in other +// directories. +filegroup { + name: "frameworks-base-api-system-removed.txt", + srcs: [ + "api/system-removed.txt", + ], +} + framework_docs_only_args = " -android -manifest $(location core/res/AndroidManifest.xml) " + "-werror -lerror -hide 111 -hide 113 -hide 125 -hide 126 -hide 127 -hide 128 " + "-overview $(location core/java/overview.html) " + |