summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDan Egnor <egnor@google.com>2009-11-18 14:14:10 -0800
committerDan Egnor <egnor@google.com>2009-11-18 14:14:10 -0800
commitc9e6581809345b7c2abe8a60ebe6e312dd4c5310 (patch)
tree2f139c0e60462fb8be639f8c6dae46497257b13d /common
parent8c7d9eab8aa297f5ee3a171c6fa63fcf94e2b330 (diff)
downloadframeworks_base-c9e6581809345b7c2abe8a60ebe6e312dd4c5310.zip
frameworks_base-c9e6581809345b7c2abe8a60ebe6e312dd4c5310.tar.gz
frameworks_base-c9e6581809345b7c2abe8a60ebe6e312dd4c5310.tar.bz2
Attempt to fix the build server build: make the common library
not depend on the framework library (for now, at least).
Diffstat (limited to 'common')
-rw-r--r--common/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/Android.mk b/common/Android.mk
index b74eab3..8249a31 100644
--- a/common/Android.mk
+++ b/common/Android.mk
@@ -16,6 +16,8 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := android-common
+LOCAL_NO_STANDARD_LIBRARIES := true
+LOCAL_JAVA_LIBRARIES := core ext
LOCAL_SRC_FILES := $(call all-java-files-under, src)
include $(BUILD_STATIC_JAVA_LIBRARY)