summaryrefslogtreecommitdiff
path: root/android/variable.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2017-05-05 13:37:11 -0700
committer Colin Cross <ccross@android.com> 2017-05-05 18:22:30 -0700
commitb2123aa1df97dca26c73ef1f467ee043dc8c08c3 (patch)
tree07b9d7de59efe42d27a6ef7db62db40d9e8917ef /android/variable.go
parentc602b7d8817fdc0b7fbf1942b87c0f6eecf32aa2 (diff)
Add a variable to disable modules in the PDK
Not plumbed through yet, but will at least prevent us from losing track of which modules will not build in the PDK. Test: builds Change-Id: I4c1a0e39104b104dc1ff23c4391d5e83b3002d3a
Diffstat (limited to 'android/variable.go')
-rw-r--r--android/variable.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go
index 03c797f73..e692fafb2 100644
--- a/android/variable.go
+++ b/android/variable.go
@@ -81,6 +81,10 @@ type variableProperties struct {
Cflags []string
Cppflags []string
}
+
+ Pdk struct {
+ Enabled *bool
+ }
} `android:"arch_variant"`
}