Merge "enable java/jni build in PDK if supported" into jb-mr1-dev

This commit is contained in:
Keun young Park 2012-08-08 12:25:15 -07:00 committed by Android (Google) Code Review
commit a610da900c
1 changed files with 8 additions and 3 deletions

View File

@ -20,7 +20,7 @@ dirs := \
textures \
tritex \
ifneq ($(TARGET_BUILD_PDK), true)
ifneq (,$(TARGET_BUILD_JAVA_SUPPORT_LEVEL))
dirs += \
gl2_cameraeye \
gl2_java \
@ -29,11 +29,16 @@ dirs += \
gl_jni \
gl_perfapp \
lighting1709 \
testFramerate \
testLatency \
testPauseResume \
testViewport \
endif
endif # JAVA_SUPPORT
ifeq (platform,$(TARGET_BUILD_JAVA_SUPPORT_LEVEL))
dirs += \
testFramerate
endif # JAVA_SUPPORT platform
include $(call all-named-subdir-makefiles, $(dirs))