Skip Proguard for EXPERIMENTAL_USE_OPENJDK9=true
Proguard doesn't support v53 class files. For now, this CL simply replaces the Proguard step with a plain 'cp', which is essentially a no-op. To avoid apps exceeding the dex limit in this mode, this CL also enables --multi-dex for those builds. Test: Treehugger Bug: 67673860 Change-Id: I17dc5d827360d606a0cac12e324f97e8dedbb630
This commit is contained in:
@@ -2777,6 +2777,12 @@ endef
|
|||||||
###########################################################
|
###########################################################
|
||||||
## Commands to call Proguard
|
## Commands to call Proguard
|
||||||
###########################################################
|
###########################################################
|
||||||
|
ifeq ($(EXPERIMENTAL_USE_OPENJDK9),true)
|
||||||
|
define transform-jar-to-proguard
|
||||||
|
@echo Skipping Proguard: $<$(PRIVATE_PROGUARD_INJAR_FILTERS) $@
|
||||||
|
$(hide) cp '$<' $@
|
||||||
|
endef
|
||||||
|
else
|
||||||
define transform-jar-to-proguard
|
define transform-jar-to-proguard
|
||||||
@echo Proguard: $@
|
@echo Proguard: $@
|
||||||
$(hide) $(PROGUARD) -injars '$<$(PRIVATE_PROGUARD_INJAR_FILTERS)' \
|
$(hide) $(PROGUARD) -injars '$<$(PRIVATE_PROGUARD_INJAR_FILTERS)' \
|
||||||
@@ -2784,6 +2790,8 @@ $(hide) $(PROGUARD) -injars '$<$(PRIVATE_PROGUARD_INJAR_FILTERS)' \
|
|||||||
$(PRIVATE_PROGUARD_FLAGS) \
|
$(PRIVATE_PROGUARD_FLAGS) \
|
||||||
$(addprefix -injars , $(PRIVATE_EXTRA_INPUT_JAR))
|
$(addprefix -injars , $(PRIVATE_EXTRA_INPUT_JAR))
|
||||||
endef
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
## Commands to call R8
|
## Commands to call R8
|
||||||
|
@@ -555,6 +555,10 @@ endif
|
|||||||
|
|
||||||
$(eval $(call copy-one-file,$(full_classes_jarjar_jar),$(full_classes_jar)))
|
$(eval $(call copy-one-file,$(full_classes_jarjar_jar),$(full_classes_jar)))
|
||||||
|
|
||||||
|
ifeq ($(EXPERIMENTAL_USE_OPENJDK9),true)
|
||||||
|
LOCAL_DX_FLAGS := $(filter-out --multi-dex,$(LOCAL_DX_FLAGS)) --multi-dex
|
||||||
|
endif
|
||||||
|
|
||||||
my_desugaring :=
|
my_desugaring :=
|
||||||
ifndef LOCAL_IS_STATIC_JAVA_LIBRARY
|
ifndef LOCAL_IS_STATIC_JAVA_LIBRARY
|
||||||
my_desugaring := true
|
my_desugaring := true
|
||||||
|
Reference in New Issue
Block a user