summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNan Zhang <nanzhang@google.com>2018-07-23 16:35:55 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-07-23 16:35:55 -0700
commitf087e881a1203e42205e7d256d0bc7906701fad8 (patch)
treedb593e856da0244c0bc4aeba88ddc680f39b8692
parent711913cd2846a1826af853a13e0515269f813462 (diff)
parentedc9c8d3e1fb602ca9526be22929323d1414b031 (diff)
downloadmultidex-f087e881a1203e42205e7d256d0bc7906701fad8.tar.gz
Fix the broken build: git_master/apps
am: edc9c8d3e1 Change-Id: Id8bc64c0537bae7915cb416963ea695484cd4859
-rw-r--r--instrumentation/Android.bp6
-rw-r--r--library/Android.bp6
2 files changed, 12 insertions, 0 deletions
diff --git a/instrumentation/Android.bp b/instrumentation/Android.bp
index ce90b2f..e342fa9 100644
--- a/instrumentation/Android.bp
+++ b/instrumentation/Android.bp
@@ -38,4 +38,10 @@ java_library_static {
static_libs: [
"android-support-multidex",
],
+ product_variables: {
+ unbundled_build: {
+ // Don't build the library in unbundled branches.
+ enabled: false,
+ },
+ },
}
diff --git a/library/Android.bp b/library/Android.bp
index 2f09070..bc82325 100644
--- a/library/Android.bp
+++ b/library/Android.bp
@@ -38,4 +38,10 @@ java_library_static {
java_resources: [
":android-support-multidex-version",
],
+ product_variables: {
+ unbundled_build: {
+ // Don't build the library in unbundled branches.
+ enabled: false,
+ },
+ },
}