summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-09 13:25:11 -0800
committerDan Albert <danalbert@google.com>2015-02-09 13:25:11 -0800
commit54d4b126073e603f6be876fb1bca3420150d180e (patch)
treef53964aabea204746210abf5a6fca0c727b362c1 /Android.mk
parentd9e397b599b13d642138480a28c14db7a136bf05 (diff)
downloadexternal_boringssl-54d4b126073e603f6be876fb1bca3420150d180e.tar.gz
external_boringssl-54d4b126073e603f6be876fb1bca3420150d180e.tar.bz2
external_boringssl-54d4b126073e603f6be876fb1bca3420150d180e.zip
Disable boringssl build.
All these modules are defined in external/openssl as well, which is breaking the build. Disable everything in the makefile until someone that owns the project has a chance to clean it up. Change-Id: I732739999e89bb832005842a5776d1540fb6bdbb
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 81b6ce1..ce4ff1c 100644
--- a/Android.mk
+++ b/Android.mk
@@ -4,6 +4,10 @@
LOCAL_PATH := $(call my-dir)
+# All these modules are also defined in external/openssl, which is breaking the
+# build.
+ifeq (disable-build,)
+
## libcrypto
# Target static library
@@ -100,3 +104,5 @@ LOCAL_CFLAGS += -fvisibility=hidden -DBORINGSSL_SHARED_LIBRARY -DBORINGSSL_IMPLE
LOCAL_SHARED_LIBRARIES += libcrypto-host
include $(LOCAL_PATH)/ssl-sources.mk
include $(BUILD_HOST_SHARED_LIBRARY)
+
+endif