diff options
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,9 @@ CHROMIUM_DIR := $(call my-dir) # WebView build using the Android build system. ifneq (,$(wildcard $(CHROMIUM_DIR)/GypAndroid.$(HOST_OS)-$(TARGET_ARCH).mk)) +# Don't include anything if the product is using a prebuilt webviewchromium. +ifneq ($(PRODUCT_PREBUILT_WEBVIEWCHROMIUM),yes) + # We default to release for the Android build system. Developers working on # WebView code can build with "make GYP_CONFIGURATION=Debug". GYP_CONFIGURATION := Release @@ -22,3 +25,4 @@ include $(CHROMIUM_DIR)/GypAndroid.$(HOST_OS)-$(TARGET_ARCH).mk include $(CHROMIUM_DIR)/android_webview/Android.mk endif +endif |