xref: /aosp_15_r20/build/soong/root.bp (revision 333d2b3687b3a337dbcca9d65000bca186795e39)
1*333d2b36SAndroid Build Coastguard Worker// Soong finds all Android.bp and Blueprints files in the source tree,
2*333d2b36SAndroid Build Coastguard Worker// subdirs= and optional_subdirs= are obsolete and this file no longer
3*333d2b36SAndroid Build Coastguard Worker// needs a list of the top level directories that may contain Android.bp
4*333d2b36SAndroid Build Coastguard Worker// files.
5*333d2b36SAndroid Build Coastguard Worker
6*333d2b36SAndroid Build Coastguard Worker// TODO(b/253827323) Remove this. A module in internal builds needs to disable a new check,
7*333d2b36SAndroid Build Coastguard Worker// IdentifierName, when errorprone is updated. In order to avoid having the update errorprone
8*333d2b36SAndroid Build Coastguard Worker// in internal first, and then aosp, create this variable that we can fill out in internal in the
9*333d2b36SAndroid Build Coastguard Worker// same topic as the errorprone update, then move the flag out of the variable after the update,
10*333d2b36SAndroid Build Coastguard Worker// then remove the variable.
11*333d2b36SAndroid Build Coastguard Workerdisable_identifiername_for_errorprone_update = [
12*333d2b36SAndroid Build Coastguard Worker    "-Xep:IdentifierName:OFF",
13*333d2b36SAndroid Build Coastguard Worker]
14