summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kline <ek@google.com>2016-06-07 04:03:04 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-06-07 04:03:04 +0000
commit21d6b07cefb6d3c470255fea1325ffcf4f4f99ef (patch)
tree358acd0d888297dcd31cf1426a35e46305a8b416
parent98b6aada664e8f9338cc031f0e51f8fd135ad5e5 (diff)
parent600c6341e62c165c60f526174d965cc7f1b30c38 (diff)
downloadextras-21d6b07cefb6d3c470255fea1325ffcf4f4f99ef.tar.gz
Do not build multinetwork tools when targeting the PDK
am: 600c6341e6 * commit '600c6341e62c165c60f526174d965cc7f1b30c38': Do not build multinetwork tools when targeting the PDK Change-Id: I1475ee586faf10942e805c51290d83aa1998cb5e
-rw-r--r--multinetwork/Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/multinetwork/Android.mk b/multinetwork/Android.mk
index d1a92899..28e56d43 100644
--- a/multinetwork/Android.mk
+++ b/multinetwork/Android.mk
@@ -1,5 +1,8 @@
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
@@ -22,3 +25,5 @@ LOCAL_MODULE_TAGS := debug
LOCAL_SHARED_LIBRARIES := libandroid libbase libc++
LOCAL_SRC_FILES := httpurl.cpp common.cpp
include $(BUILD_EXECUTABLE)
+
+endif # ifneq ($(TARGET_BUILD_PDK), true)