summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNan Zhang <nanzhang@google.com>2018-07-23 17:25:11 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-07-23 17:25:11 -0700
commit9b17f9b33683757ae0ee0326411d1bd4fdf2e2a1 (patch)
treedb593e856da0244c0bc4aeba88ddc680f39b8692
parent84f19b4a028791e8ddbd6e669790562554fd365f (diff)
parent8bccbfb84a2261abd9173908fae175757fa42d1a (diff)
downloadmultidex-9b17f9b33683757ae0ee0326411d1bd4fdf2e2a1.tar.gz
Fix the broken build: git_master/apps am: edc9c8d3e1 am: f087e881a1
am: 8bccbfb84a Change-Id: If719e66e4c58352612800532d975adb16814a16b
-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,
+ },
+ },
}