Disable Hidden API Checks for ENG Builds
For more discussions/details, please check internal CL ag/24145146 Bug: 289409213 BUg: 285976182 Test: Look for hiddenapi calls in build trace Change-Id: Ia2780ee419b8da1418ba1c7a7d732712b7c2a322
This commit is contained in:
@@ -113,7 +113,7 @@ func (b *platformBootclasspathModule) DepsMutator(ctx android.BottomUpMutatorCon
|
||||
}
|
||||
|
||||
func (b *platformBootclasspathModule) hiddenAPIDepsMutator(ctx android.BottomUpMutatorContext) {
|
||||
if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
|
||||
if ctx.Config().DisableHiddenApiChecks() {
|
||||
return
|
||||
}
|
||||
|
||||
@@ -275,10 +275,10 @@ func (b *platformBootclasspathModule) generateHiddenAPIBuildActions(ctx android.
|
||||
|
||||
bootDexJarByModule := extractBootDexJarsFromModules(ctx, modules)
|
||||
|
||||
// Don't run any hiddenapi rules if UNSAFE_DISABLE_HIDDENAPI_FLAGS=true. This is a performance
|
||||
// Don't run any hiddenapi rules if hidden api checks are disabled. This is a performance
|
||||
// optimization that can be used to reduce the incremental build time but as its name suggests it
|
||||
// can be unsafe to use, e.g. when the changes affect anything that goes on the bootclasspath.
|
||||
if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
|
||||
if ctx.Config().DisableHiddenApiChecks() {
|
||||
paths := android.OutputPaths{b.hiddenAPIFlagsCSV, b.hiddenAPIIndexCSV, b.hiddenAPIMetadataCSV}
|
||||
for _, path := range paths {
|
||||
ctx.Build(pctx, android.BuildParams{
|
||||
|
Reference in New Issue
Block a user