Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e57996f authored by Ying Wang's avatar Ying Wang Committed by Android Git Automerger
Browse files

am 0e8dc464: am 292c246b: Merge "Call functions to calculate deps and classes.jar" into gingerbread

Merge commit '0e8dc464'

* commit '0e8dc464':
  Call functions to calculate deps and classes.jar
parents 9783052e 0e8dc464
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -25,15 +25,11 @@ include $(CLEAR_VARS)
# We need to process the framework classes.jar file, but we can't
# depend directly on it (private vars won't be inherited correctly).
# So, we depend on framework's BUILT file.
built_framework_dep := \
	$(call intermediates-dir-for,JAVA_LIBRARIES,framework)/javalib.jar
built_framework_classes := \
	$(call intermediates-dir-for,JAVA_LIBRARIES,framework)/classes.jar
built_framework_dep := $(call java-lib-deps,framework)
built_framework_classes := $(call java-lib-files,framework)

built_core_dep := \
	$(call intermediates-dir-for,JAVA_LIBRARIES,core)/javalib.jar
built_core_classes := \
	$(call intermediates-dir-for,JAVA_LIBRARIES,core)/classes.jar
built_core_dep := $(call java-lib-deps,core)
built_core_classes := $(call java-lib-files,core)

built_layoutlib_create_jar := $(call intermediates-dir-for, \
			JAVA_LIBRARIES,layoutlib_create,HOST)/javalib.jar