diff options
| author | 2024-08-05 18:25:36 +0000 | |
|---|---|---|
| committer | 2024-08-05 18:25:36 +0000 | |
| commit | 99417ba9ea1e8ca8fdac449d6c59fa2c5caea54c (patch) | |
| tree | 6923e536bcb577464d58ecc0cd8c250715491c23 /android/config.go | |
| parent | acfa26b5bac1d7b27141c45ffb1ac2b6a1aa0c43 (diff) | |
| parent | 062eb663c5144f8d9e4ab273558633a15bb75abd (diff) | |
Merge "Enable from-text stub generation in non-sdk java_sdk_library" into main
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/android/config.go b/android/config.go index 40a73d6e7..e7f1044e2 100644 --- a/android/config.go +++ b/android/config.go @@ -1979,17 +1979,6 @@ func (c *config) SetBuildFromTextStub(b bool) { c.productVariables.Build_from_text_stub = boolPtr(b) } -func (c *config) SetApiLibraries(libs []string) { - c.apiLibraries = make(map[string]struct{}) - for _, lib := range libs { - c.apiLibraries[lib] = struct{}{} - } -} - -func (c *config) GetApiLibraries() map[string]struct{} { - return c.apiLibraries -} - func (c *deviceConfig) CheckVendorSeappViolations() bool { return Bool(c.config.productVariables.CheckVendorSeappViolations) } |