diff options
author | Andrei-Valentin Onea <andreionea@google.com> | 2019-03-09 04:07:53 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-03-09 04:07:53 -0800 |
commit | e94dea314954cca9f5953bc37df1ac31675e48a0 (patch) | |
tree | 47547e2700a3dabc65e81b3141c4111b2827f20f /java | |
parent | 6b783c8391c70a12819750e9806a6930ae0cb8f7 (diff) | |
parent | 4f0ca94115be86a9c13412893338263a6574dcb4 (diff) | |
download | android_build_soong-e94dea314954cca9f5953bc37df1ac31675e48a0.tar.gz android_build_soong-e94dea314954cca9f5953bc37df1ac31675e48a0.tar.bz2 android_build_soong-e94dea314954cca9f5953bc37df1ac31675e48a0.zip |
Merge "Differentiate system and test apis in whitelist" am: fdd1457fa6 am: 2af4ac8fa8
am: 4f0ca94115
Change-Id: Ifc224a414f5502fd437d49cfc0be8a42cfd33f26
Diffstat (limited to 'java')
-rw-r--r-- | java/hiddenapi_singleton.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/hiddenapi_singleton.go b/java/hiddenapi_singleton.go index ceafb59e..86531ebc 100644 --- a/java/hiddenapi_singleton.go +++ b/java/hiddenapi_singleton.go @@ -183,8 +183,8 @@ func stubFlagsRule(ctx android.SingletonContext) { Text("list"). FlagForEachInput("--boot-dex=", bootDexJars). FlagWithInputList("--public-stub-classpath=", publicStubPaths, ":"). - FlagWithInputList("--public-stub-classpath=", systemStubPaths, ":"). - FlagWithInputList("--public-stub-classpath=", testStubPaths, ":"). + FlagWithInputList("--system-stub-classpath=", systemStubPaths, ":"). + FlagWithInputList("--test-stub-classpath=", testStubPaths, ":"). FlagWithInputList("--core-platform-stub-classpath=", corePlatformStubPaths, ":"). FlagWithOutput("--out-api-flags=", tempPath) |