diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-10 12:43:07 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-10 12:43:57 -0700 |
commit | 4e504f170aa33afd61b87de784cb30dad1a4e1d2 (patch) | |
tree | 3261570163cf72743bb944cdec87ea1d65bdfc81 /target/product/core_minimal.mk | |
parent | 8fd6c6b7eea0c941a7cc6096d41de8d231944e1c (diff) | |
download | build-4e504f170aa33afd61b87de784cb30dad1a4e1d2.zip build-4e504f170aa33afd61b87de784cb30dad1a4e1d2.tar.gz build-4e504f170aa33afd61b87de784cb30dad1a4e1d2.tar.bz2 |
Disable ART runtime for darwin
Change-Id: Icdad4f422bacc3f997f585df48cc6f1c2d7c7642
Diffstat (limited to 'target/product/core_minimal.mk')
-rw-r--r-- | target/product/core_minimal.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/product/core_minimal.mk b/target/product/core_minimal.mk index 313aee2..a6f9f41 100644 --- a/target/product/core_minimal.mk +++ b/target/product/core_minimal.mk @@ -59,7 +59,9 @@ PRODUCT_PACKAGES += \ PRODUCT_RUNTIMES := runtime_libdvm_default ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) - PRODUCT_RUNTIMES += runtime_libart + ifneq ($(HOST_OS),darwin) + PRODUCT_RUNTIMES += runtime_libart + endif endif $(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk) |