diff options
Diffstat (limited to 'android/sdk.go')
-rw-r--r-- | android/sdk.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/android/sdk.go b/android/sdk.go index f0fa7260b..2dc0bd7f3 100644 --- a/android/sdk.go +++ b/android/sdk.go @@ -982,3 +982,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{}) |