Update language to comply with Android's inclusive language guidance
See https://source.android.com/setup/contribute/respectful-code for reference. Bug: 161896447 Test: ran `m`. Change-Id: If5ec29482911c281bc1c4bf2cfc84b2f05c2240d
This commit is contained in:
@@ -208,7 +208,7 @@ func stubFlagsRule(ctx android.SingletonContext) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// flagsRule creates a rule to build hiddenapi-flags.csv out of flags.csv files generated for boot image modules and
|
// flagsRule creates a rule to build hiddenapi-flags.csv out of flags.csv files generated for boot image modules and
|
||||||
// the greylists.
|
// the unsupported API.
|
||||||
func flagsRule(ctx android.SingletonContext) android.Path {
|
func flagsRule(ctx android.SingletonContext) android.Path {
|
||||||
var flagsCSV android.Paths
|
var flagsCSV android.Paths
|
||||||
var greylistRemovedApis android.Paths
|
var greylistRemovedApis android.Paths
|
||||||
@@ -247,18 +247,18 @@ func flagsRule(ctx android.SingletonContext) android.Path {
|
|||||||
Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/generate_hiddenapi_lists.py")).
|
Tool(android.PathForSource(ctx, "frameworks/base/tools/hiddenapi/generate_hiddenapi_lists.py")).
|
||||||
FlagWithInput("--csv ", stubFlags).
|
FlagWithInput("--csv ", stubFlags).
|
||||||
Inputs(flagsCSV).
|
Inputs(flagsCSV).
|
||||||
FlagWithInput("--greylist ",
|
FlagWithInput("--unsupported ",
|
||||||
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist.txt")).
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist.txt")).
|
||||||
FlagWithInput("--greylist-ignore-conflicts ", combinedRemovedApis).
|
FlagWithInput("--unsupported-ignore-conflicts ", combinedRemovedApis).
|
||||||
FlagWithInput("--greylist-max-q ",
|
FlagWithInput("--max-target-q ",
|
||||||
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-q.txt")).
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-q.txt")).
|
||||||
FlagWithInput("--greylist-max-p ",
|
FlagWithInput("--max-target-p ",
|
||||||
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-p.txt")).
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-p.txt")).
|
||||||
FlagWithInput("--greylist-max-o-ignore-conflicts ",
|
FlagWithInput("--max-target-o-ignore-conflicts ",
|
||||||
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-o.txt")).
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-max-o.txt")).
|
||||||
FlagWithInput("--blacklist ",
|
FlagWithInput("--blocked ",
|
||||||
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-force-blacklist.txt")).
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-force-blacklist.txt")).
|
||||||
FlagWithInput("--greylist-packages ",
|
FlagWithInput("--unsupported-packages ",
|
||||||
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-packages.txt")).
|
android.PathForSource(ctx, "frameworks/base/config/hiddenapi-greylist-packages.txt")).
|
||||||
FlagWithOutput("--output ", tempPath)
|
FlagWithOutput("--output ", tempPath)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user