summaryrefslogtreecommitdiff
path: root/android/package.go
diff options
context:
space:
mode:
Diffstat (limited to 'android/package.go')
-rw-r--r--android/package.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/android/package.go b/android/package.go
index 7012fc7d8..182b3ed6e 100644
--- a/android/package.go
+++ b/android/package.go
@@ -31,8 +31,6 @@ func RegisterPackageBuildComponents(ctx RegistrationContext) {
type packageProperties struct {
// Specifies the default visibility for all modules defined in this package.
Default_visibility []string
- // Specifies the default license terms for all modules defined in this package.
- Default_applicable_licenses []string
}
type packageModule struct {
@@ -70,9 +68,5 @@ func PackageFactory() Module {
// its checking and parsing phases so make it the primary visibility property.
setPrimaryVisibilityProperty(module, "default_visibility", &module.properties.Default_visibility)
- // The default_applicable_licenses property needs to be checked and parsed by the licenses module during
- // its checking and parsing phases so make it the primary licenses property.
- setPrimaryLicensesProperty(module, "default_applicable_licenses", &module.properties.Default_applicable_licenses)
-
return module
}