You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
912 B
31 lines
912 B
LOCAL_PATH := $(call my-dir) |
|
|
|
# The PDK build does not have access to frameworks/native elements. |
|
ifneq ($(TARGET_BUILD_PDK), true) |
|
|
|
# Sample util binaries. |
|
include $(CLEAR_VARS) |
|
LOCAL_MODULE := dnschk |
|
|
|
LOCAL_C_INCLUDES += frameworks/native/include external/libcxx/include |
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) |
|
ifndef BRILLO |
|
LOCAL_MODULE_TAGS := debug |
|
endif #!BRILLO |
|
LOCAL_SHARED_LIBRARIES := libandroid libbase libc++ |
|
LOCAL_SRC_FILES := dnschk.cpp common.cpp |
|
include $(BUILD_EXECUTABLE) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_MODULE := httpurl |
|
|
|
LOCAL_C_INCLUDES += frameworks/native/include external/libcxx/include |
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) |
|
ifndef BRILLO |
|
LOCAL_MODULE_TAGS := debug |
|
endif #!BRILLO |
|
LOCAL_SHARED_LIBRARIES := libandroid libbase libc++ |
|
LOCAL_SRC_FILES := httpurl.cpp common.cpp |
|
include $(BUILD_EXECUTABLE) |
|
|
|
endif # ifneq ($(TARGET_BUILD_PDK), true)
|
|
|