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