summaryrefslogtreecommitdiffstats
path: root/charger/Android.mk
diff options
context:
space:
mode:
authorBrian Swetland <swetland@google.com>2011-09-20 17:38:06 -0700
committerBrian Swetland <swetland@google.com>2011-09-20 17:38:06 -0700
commit303e6ac804c110ae54a51b56a217d70e97313c10 (patch)
treeb06978256eb218bdf7cc2faa66949928606d2e7f /charger/Android.mk
parent6656d921e80093ec48d97fa4236a3cc5259b663a (diff)
downloadsystem_core-303e6ac804c110ae54a51b56a217d70e97313c10.tar.gz
system_core-303e6ac804c110ae54a51b56a217d70e97313c10.tar.bz2
system_core-303e6ac804c110ae54a51b56a217d70e97313c10.zip
fix TINY_ANDROID build (exclude charger binary)
Change-Id: I28157cbadcb208df517052336f652f5810048cc1 Signed-off-by: Brian Swetland <swetland@google.com>
Diffstat (limited to 'charger/Android.mk')
-rw-r--r--charger/Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/charger/Android.mk b/charger/Android.mk
index 75e78d546..cca329ed6 100644
--- a/charger/Android.mk
+++ b/charger/Android.mk
@@ -1,5 +1,7 @@
# Copyright 2011 The Android Open Source Project
+ifneq ($(BUILD_TINY_ANDROID),true)
+
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
@@ -18,3 +20,5 @@ LOCAL_STATIC_LIBRARIES := libminui libpixelflinger_static libpng
LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils libc
include $(BUILD_EXECUTABLE)
+
+endif