Merge "Add team property to all modules." into udc-mainline-prod
diff --git a/java/droidstubs.go b/java/droidstubs.go
index a9e20e0..ea9305f 100644
--- a/java/droidstubs.go
+++ b/java/droidstubs.go
@@ -152,6 +152,10 @@
 	// API surface of this module. If set, the module contributes to an API surface.
 	// For the full list of available API surfaces, refer to soong/android/sdk_version.go
 	Api_surface *string
+
+	// a list of aconfig_declarations module names that the stubs generated in this module
+	// depend on.
+	Aconfig_declarations []string
 }
 
 // Used by xsd_config
diff --git a/java/sdk_library.go b/java/sdk_library.go
index 853792d..d461882 100644
--- a/java/sdk_library.go
+++ b/java/sdk_library.go
@@ -571,6 +571,10 @@
 		Enabled *bool
 	}
 
+	// a list of aconfig_declarations module names that the stubs generated in this module
+	// depend on.
+	Aconfig_declarations []string
+
 	// TODO: determines whether to create HTML doc or not
 	// Html_doc *bool
 }