Home | History | Annotate | Download | only in core

Lines Matching refs:PROGUARD

1674 #        $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1682 $(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1825 ## Commands to call Proguard
1828 # Command to copy the file with acp, if proguard is disabled.
1829 define proguard-disabled-commands
1834 # Command to call Proguard
1836 define proguard-enabled-commands
1837 @echo Proguard: $@
1838 $(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1841 # Figure out the proguard dictionary file of the module that is instrumentationed for.
1842 define get-instrumentation-proguard-flags
1846 define transform-jar-to-proguard
1847 $(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1849 $(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))