diff options
author | Dan Egnor <egnor@google.com> | 2009-11-18 14:14:10 -0800 |
---|---|---|
committer | Dan Egnor <egnor@google.com> | 2009-11-18 14:14:10 -0800 |
commit | b31ecb20de2673efcc06eb1b707e5fc0c8fc1741 (patch) | |
tree | 1ff3abf8691f90b93e3283d1b99d9b065a160633 /common | |
parent | 93c0b5cb9b64bf1cffea1f5b8d0ecb1c69ab358f (diff) | |
download | frameworks_native-b31ecb20de2673efcc06eb1b707e5fc0c8fc1741.zip frameworks_native-b31ecb20de2673efcc06eb1b707e5fc0c8fc1741.tar.gz frameworks_native-b31ecb20de2673efcc06eb1b707e5fc0c8fc1741.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.mk | 2 |
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) |