am b99c469e: Merge change I3a62e1c2 into eclair-mr2

Merge commit 'b99c469e2bb96420ee3c57b351aa23dd4322852a' into eclair-mr2-plus-aosp

* commit 'b99c469e2bb96420ee3c57b351aa23dd4322852a':
  Solve the mutual interdependency problem between common and framework:
This commit is contained in:
Dan Egnor
2009-11-18 17:55:50 -08:00
committed by Android Git Automerger
3 changed files with 4 additions and 4 deletions

View File

@@ -175,7 +175,6 @@ LOCAL_INTERMEDIATE_SOURCES := \
LOCAL_NO_STANDARD_LIBRARIES := true LOCAL_NO_STANDARD_LIBRARIES := true
LOCAL_JAVA_LIBRARIES := core ext LOCAL_JAVA_LIBRARIES := core ext
LOCAL_STATIC_JAVA_LIBRARIES := android-common
LOCAL_MODULE := framework LOCAL_MODULE := framework
LOCAL_MODULE_CLASS := JAVA_LIBRARIES LOCAL_MODULE_CLASS := JAVA_LIBRARIES

View File

@@ -14,11 +14,12 @@
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
# Note: the source code is in java/, not src/, because this code is also part of
# the framework library, and build/core/pathmap.mk expects a java/ subdirectory.
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_MODULE := android-common LOCAL_MODULE := android-common
LOCAL_NO_STANDARD_LIBRARIES := true LOCAL_SRC_FILES := $(call all-java-files-under, java)
LOCAL_JAVA_LIBRARIES := core ext
LOCAL_SRC_FILES := $(call all-java-files-under, src)
include $(BUILD_STATIC_JAVA_LIBRARY) include $(BUILD_STATIC_JAVA_LIBRARY)
# Include this library in the build server's output directory # Include this library in the build server's output directory