summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Kondik <shade@chemlab.org>2013-12-03 05:55:07 -0800
committerSteve Kondik <shade@chemlab.org>2013-12-03 05:55:07 -0800
commit1458b20ab256338a13640aaa58cf48c13fcefe86 (patch)
tree683a7d42cf6dc52a267a480d524fe48f5585cb9a
parent8b099af122a2689af3de32fcb23972651ee7d4e5 (diff)
downloadandroid_dalvik-1458b20ab256338a13640aaa58cf48c13fcefe86.tar.gz
android_dalvik-1458b20ab256338a13640aaa58cf48c13fcefe86.tar.bz2
android_dalvik-1458b20ab256338a13640aaa58cf48c13fcefe86.zip
Add an extra guard around perf enablement
Change-Id: I3b03ffa27ca744d8392301e6b4a8e67aa88bca53
-rw-r--r--vm/Dvm.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/Dvm.mk b/vm/Dvm.mk
index 7d8355cf2..e47b6662d 100644
--- a/vm/Dvm.mk
+++ b/vm/Dvm.mk
@@ -263,12 +263,13 @@ ifeq ($(dvm_arch),arm)
compiler/codegen/arm/ArmRallocUtil.cpp \
compiler/template/out/CompilerTemplateAsm-$(dvm_arch_variant).S
endif
-
+ ifeq ($(call is-vendor-board-platform,QCOM),true)
ifeq ($(WITH_QC_PERF),true)
LOCAL_WHOLE_STATIC_LIBRARIES += libqc-dalvik
LOCAL_SHARED_LIBRARIES += libqc-opt
LOCAL_CFLAGS += -DWITH_QC_PERF
endif
+ endif
endif
ifeq ($(dvm_arch),mips)