Home | History | Annotate | Download | only in jni
      1 # This file is dual licensed under the MIT and the University of Illinois Open
      2 # Source Licenses. See LICENSE.TXT for details.
      3 
      4 LOCAL_PATH := $(call my-dir)
      5 
      6 include $(CLEAR_VARS)
      7 LOCAL_MODULE := test_1_shared
      8 LOCAL_SRC_FILES := test_1.cc
      9 LOCAL_SHARED_LIBRARIES := llvm_libc++_shared
     10 include $(BUILD_EXECUTABLE)
     11 
     12 
     13 include $(CLEAR_VARS)
     14 LOCAL_MODULE := test_1_static
     15 LOCAL_SRC_FILES := test_1.cc
     16 LOCAL_STATIC_LIBRARIES := llvm_libc++_static
     17 include $(BUILD_EXECUTABLE)
     18 
     19 include $(LOCAL_PATH)/../../llvm-libc++/Android.mk
     20