Skip to content

Commit 600c634

Browse files
author
Erik Kline
committedJun 7, 2016
Do not build multinetwork tools when targeting the PDK
Bug: 29071416 Change-Id: Ie39cad3151907aabbf523895d6cde37b82ff29a2
1 parent 65cbaeb commit 600c634

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎multinetwork/Android.mk

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
LOCAL_PATH := $(call my-dir)
22

3+
# The PDK build does not have access to frameworks/native elements.
4+
ifneq ($(TARGET_BUILD_PDK), true)
5+
36
# Sample util binaries.
47
include $(CLEAR_VARS)
58
LOCAL_MODULE := dnschk
@@ -22,3 +25,5 @@ LOCAL_MODULE_TAGS := debug
2225
LOCAL_SHARED_LIBRARIES := libandroid libbase libc++
2326
LOCAL_SRC_FILES := httpurl.cpp common.cpp
2427
include $(BUILD_EXECUTABLE)
28+
29+
endif # ifneq ($(TARGET_BUILD_PDK), true)

0 commit comments

Comments
 (0)