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
This commit is contained in:
David Brazdil
2019-01-18 16:30:03 +00:00
parent 1eb88bb494
commit 0f670a22df
3 changed files with 12 additions and 12 deletions

View File

@@ -983,8 +983,8 @@ func (c *config) EnforceSystemCertificateWhitelist() []string {
return c.productVariables.EnforceSystemCertificateWhitelist
}
func (c *config) HiddenAPIPublicList() string {
return String(c.productVariables.HiddenAPIPublicList)
func (c *config) HiddenAPIStubFlags() string {
return String(c.productVariables.HiddenAPIStubFlags)
}
func (c *config) HiddenAPIFlags() string {