diff options
| author | 2019-01-18 16:30:03 +0000 | |
|---|---|---|
| committer | 2019-01-21 14:30:49 +0000 | |
| commit | 0f670a22dfc99e87cb5ea1b913e3c73053a1cb2d (patch) | |
| tree | 77d8a03a1b20acd9de582176db18c475a63cfea6 /android/variable.go | |
| parent | 1eb88bb4944d9e7d0bd12fb073d6054133d896de (diff) | |
Replace hiddenapi-{public,private}-list.txt with a CSV file
`hiddenapi` is being refactored to work with a single CSV file as
opposued to a multitude of text files (one per flag). This patch
changes the singleton rule for listing public/private APIs from
stubs to expect a CSV as an output.
Bug: 119068555
Test: compiles, hiddenapi-flags.csv unchanged
Change-Id: I622521d59979a6b01ecc8065a278412fedf7b9bc
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/variable.go b/android/variable.go index 46b115502..8333635a6 100644 --- a/android/variable.go +++ b/android/variable.go @@ -273,7 +273,7 @@ type productVariables struct { EnforceSystemCertificateWhitelist []string `json:",omitempty"` // TODO(ccross): move these to a Singleton in Soong - HiddenAPIPublicList *string `json:",omitempty"` + HiddenAPIStubFlags *string `json:",omitempty"` HiddenAPIFlags *string `json:",omitempty"` HiddenAPIExtraAppUsageJars []string `json:",omitempty"` } |