android_build_soong/root.bp
Cole Faust d547ad1174 Disable IdentifierName
For an internal module that uses this variable. The disabling will
be moved inline after the errorprone update is submitted, and the
variable removed.

Bug: 253827323
Test: m RUN_ERROR_PRONE=true javac-check
Change-Id: I95ba56e008279db1b7d63ea503471d9d0f290b0b
2024-12-05 09:51:33 -08:00

13 lines
718 B
Text

// Soong finds all Android.bp and Blueprints files in the source tree,
// subdirs= and optional_subdirs= are obsolete and this file no longer
// needs a list of the top level directories that may contain Android.bp
// files.
// TODO(b/253827323) Remove this. A module in internal builds needs to disable a new check,
// IdentifierName, when errorprone is updated. In order to avoid having the update errorprone
// in internal first, and then aosp, create this variable that we can fill out in internal in the
// same topic as the errorprone update, then move the flag out of the variable after the update,
// then remove the variable.
disable_identifiername_for_errorprone_update = [
"-Xep:IdentifierName:OFF",
]