diff options
author | 2022-04-08 00:28:11 +0100 | |
---|---|---|
committer | 2022-04-08 10:56:21 +0100 | |
commit | 0c12b78ae808804a7fc96446af684ebd6a2307c5 (patch) | |
tree | c29752e5015d38b42b9e94f83b891065ae67c29e /java/hiddenapi_modular.go | |
parent | 181b56cf4d42b3b41046af2f43b96d3863b72f50 (diff) |
Use named options for verify_overlaps
Previously, verify_overlaps used positional arguments, the first was
the monolithi flags and the rest were the module flag pairs (filtered
flags file and signature patterns file). This change makes them use
named options to make the purpose of the arguments clearer on the
command line.
Bug: 194063708
Test: atest --host verify_overlaps_test
m out/soong/hiddenapi/hiddenapi-flags.csv
Change-Id: Ife0af0016eb0f91416e8330d5d98cb53c97d68a4
Diffstat (limited to 'java/hiddenapi_modular.go')
-rw-r--r-- | java/hiddenapi_modular.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/hiddenapi_modular.go b/java/hiddenapi_modular.go index 95ded34bb..44cdfa5dd 100644 --- a/java/hiddenapi_modular.go +++ b/java/hiddenapi_modular.go @@ -994,10 +994,11 @@ func buildRuleValidateOverlappingCsvFiles(ctx android.BuilderContext, name strin rule := android.NewRuleBuilder(pctx, ctx) command := rule.Command(). BuiltTool("verify_overlaps"). - Input(monolithicFilePath) + FlagWithInput("--monolithic-flags ", monolithicFilePath) for _, subset := range csvSubsets { command. + Flag("--module-flags "). Textf("%s:%s", subset.CsvFile, subset.SignaturePatternsFile). Implicit(subset.CsvFile).Implicit(subset.SignaturePatternsFile) } |