Switch target java library dependency file from javalib.jar to classes.jar
Previously, any target Java code that depends on framework.jar has to wait for the library's javalib.jar. To build javalib.jar we have to run dx, which is quite slow. Actually when code links against framework.jar, only classes.jar is needed. This improves the potential parallelism of the build system. Change-Id: I82c5926ef282a3a6096bbf49b54ef4f2a0c2c0e7
This commit is contained in:
parent
d7f8c32ecd
commit
087d4ee3ed
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@ endef
|
|||
# $(1): library name
|
||||
# $(2): Non-empty if IS_HOST_MODULE
|
||||
define _java-lib-full-dep
|
||||
$(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX)
|
||||
$(call _java-lib-dir,$(1),$(2))/$(if $(2) javalib,classes)$(COMMON_JAVA_PACKAGE_SUFFIX)
|
||||
endef
|
||||
|
||||
# $(1): library name list
|
||||
|
|
Loading…
Reference in a new issue