summaryrefslogtreecommitdiff
path: root/android/sdk.go
diff options
context:
space:
mode:
Diffstat (limited to 'android/sdk.go')
-rw-r--r--android/sdk.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/android/sdk.go b/android/sdk.go
index 3a5624030..9317910ee 100644
--- a/android/sdk.go
+++ b/android/sdk.go
@@ -961,3 +961,10 @@ type ExportedComponentsInfo struct {
}
var ExportedComponentsInfoProvider = blueprint.NewProvider(ExportedComponentsInfo{})
+
+// AdditionalSdkInfo contains additional properties to add to the generated SDK info file.
+type AdditionalSdkInfo struct {
+ Properties map[string]interface{}
+}
+
+var AdditionalSdkInfoProvider = blueprint.NewProvider(AdditionalSdkInfo{})