summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2013-08-02 14:29:02 -0700
committerYing Wang <wangying@google.com>2013-08-02 21:35:15 +0000
commit07c07062dfc8a0b59f9ace719f1b8000407e26b2 (patch)
treea1d63009c6fe0fadeb17139401542392b2671723
parent2c86e70705788bb5bce38e904656f3eabb27dc1b (diff)
downloadbuild-07c07062dfc8a0b59f9ace719f1b8000407e26b2.zip
build-07c07062dfc8a0b59f9ace719f1b8000407e26b2.tar.gz
build-07c07062dfc8a0b59f9ace719f1b8000407e26b2.tar.bz2
Let apicheck visible to unbundled build.
Change-Id: I22cd1e67aeb6bf23229016215ee0a15f5116513f (cherry picked from commit 48d132659ebf99cf41d9fbf62ab1f09604938ca7)
-rw-r--r--tools/Android.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/Android.mk b/tools/Android.mk
index f646c37..30febd6 100644
--- a/tools/Android.mk
+++ b/tools/Android.mk
@@ -14,10 +14,10 @@
# limitations under the License.
#
-ifeq (,$(TARGET_BUILD_APPS))
-
LOCAL_PATH := $(call my-dir)
+ifeq (,$(TARGET_BUILD_APPS))
+
ifeq ($(TARGET_BUILD_PDK),true)
include $(filter-out %/acp/Android.mk %/signapk/Android.mk %/zipalign/Android.mk,\
$(call all-makefiles-under,$(LOCAL_PATH)))
@@ -25,4 +25,8 @@ else # !PDK
include $(call all-makefiles-under,$(LOCAL_PATH))
endif # PDK
+else # TARGET_BUILD_APPS
+
+include $(LOCAL_PATH)/apicheck/Android.mk
+
endif