Home | History | Annotate | Download | only in testPauseResume
      1 #########################################################################
      2 # OpenGL ES JNI sample
      3 # This makefile builds both an activity and a shared library.
      4 #########################################################################
      5 ifneq ($(TARGET_SIMULATOR),true) # not 64 bit clean
      6 
      7 TOP_LOCAL_PATH:= $(call my-dir)
      8 
      9 # Build activity
     10 
     11 LOCAL_PATH:= $(call my-dir)
     12 include $(CLEAR_VARS)
     13 
     14 LOCAL_MODULE_TAGS := optional
     15 
     16 LOCAL_SRC_FILES := $(call all-subdir-java-files)
     17 
     18 LOCAL_PACKAGE_NAME := TestEGL
     19 
     20 include $(BUILD_PACKAGE)
     21 
     22 endif # TARGET_SIMULATOR
     23