Merge "Support libraries (not just boot jars) that have hiddenapi" am: f854d3e4be am: 31d68763ad

am: 919d0e7e5a

Change-Id: I9b17d19f5ae8d65a572463555c8cbae6b1c2d32c
This commit is contained in:
Paul Duffin
2019-02-18 04:34:39 -08:00
committed by android-build-merger
2 changed files with 18 additions and 3 deletions

View File

@@ -33,7 +33,12 @@ var (
DefaultLambdaStubsLibrary = "core-lambda-stubs"
SdkLambdaStubsPath = "prebuilts/sdk/tools/core-lambda-stubs.jar"
// A list of the jars that provide information about usages of the hidden API.
// A list of the non-boot jars that provide hidden APIs, i.e. libraries.
HiddenAPIProvidingNonBootJars = []string{
"android.test.base",
}
// A list of the non-boot jars that provide information about usages of the hidden API.
HiddenAPIExtraAppUsageJars = []string{
// The core-oj-hiddenapi provides information for the core-oj jar.
"core-oj-hiddenapi",