diff options
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/android/config.go b/android/config.go index 00fc823a8..9f92fff0f 100644 --- a/android/config.go +++ b/android/config.go @@ -1252,7 +1252,7 @@ func (c *config) TidyChecks() string { } func (c *config) LibartImgHostBaseAddress() string { - return "0x60000000" + return "0x70000000" } func (c *config) LibartImgDeviceBaseAddress() string { @@ -1278,6 +1278,7 @@ func (c *config) EnforceRROForModule(name string) bool { } return false } + func (c *config) EnforceRROExcludedOverlay(path string) bool { excluded := c.productVariables.EnforceRROExcludedOverlays if len(excluded) > 0 { @@ -1286,6 +1287,11 @@ func (c *config) EnforceRROExcludedOverlay(path string) bool { return false } +func (c *config) EnforceRROGlobally() bool { + enforceList := c.productVariables.EnforceRROTargets + return InList("*", enforceList) +} + func (c *config) ExportedNamespaces() []string { return append([]string(nil), c.productVariables.NamespacesToExport...) } @@ -1691,14 +1697,6 @@ func (c *config) EnforceProductPartitionInterface() bool { return Bool(c.productVariables.EnforceProductPartitionInterface) } -func (c *config) EnforceInterPartitionJavaSdkLibrary() bool { - return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary) -} - -func (c *config) InterPartitionJavaLibraryAllowList() []string { - return c.productVariables.InterPartitionJavaLibraryAllowList -} - func (c *config) ProductHiddenAPIStubs() []string { return c.productVariables.ProductHiddenAPIStubs } |