Lines Matching refs:TARGET
32 # $(ALL_MODULES.$(target)).BUILT
33 # $(ALL_MODULES.$(target)).INSTALLED
35 # target, and the INSTALLED variable contains the LOCAL_INSTALLED_MODULE.
360 ## Set up the dependencies for a prebuilt target
380 ## $(call target class, files ...)
391 ## a given target. We could technically get away without
397 # $(1): target class, like "APPS"
398 # $(2): target name, like "NotePad"
399 # $(3): if non-empty, this is a HOST target.
409 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
448 define normalize-target-libraries
457 ## $(1): target list
469 ## $(1): target list
483 ## $(1): target list
636 # set of targets. If a target has multiple tags and
637 # any of them are rejected, the target is rejected.
804 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
873 @echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
922 @echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
927 @echo "target asm: $(PRIVATE_MODULE) <= $<"
943 ## This should never happen for target builds but this
948 @echo "target ObjC: $(PRIVATE_MODULE) <= $<"
1065 define _extract-and-include-single-target-whole-static-lib
1079 define extract-and-include-target-whole-static-libs
1081 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
1089 $(extract-and-include-target-whole-static-libs)
1090 @echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
1198 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1201 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1203 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1211 @echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
1217 @echo "target Package: $(PRIVATE_MODULE) ($@)"
1223 ## Commands for filtering a target executable or library
1228 @echo "target Strip: $(PRIVATE_MODULE) ($@)"
1249 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1252 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1254 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1262 @echo "target Executable: $(PRIVATE_MODULE) ($@)"
1281 @echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
1351 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1355 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
1423 # Common definition to invoke javac on the host and target.
1463 @echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1508 @echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1523 @echo "target Dex: $(PRIVATE_MODULE)"
1568 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1573 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
1662 -target 1.5 \
1683 $$(copy-file-to-new-target-with-cp)
1692 $$(copy-file-to-target)
1706 # Therefore copy-file-to-target is the same as copy-file-to-new-target.
1707 define copy-file-to-target
1712 # The same as copy-file-to-target, but use the local
1714 define copy-file-to-target-with-cp
1719 # The same as copy-file-to-target, but use the zipalign tool to do so.
1720 define copy-file-to-target-with-zipalign
1725 # The same as copy-file-to-target, but strip out "# comment"-style
1727 define copy-file-to-target-strip-comments
1732 # The same as copy-file-to-target, but don't preserve
1734 define copy-file-to-new-target
1739 # The same as copy-file-to-new-target, but use the local
1741 define copy-file-to-new-target-with-cp
1746 # Copy a prebuilt file to a target location.
1747 define transform-prebuilt-to-target
1748 @echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1749 $(copy-file-to-target)
1752 # Copy a prebuilt file to a target location, using zipalign on it.
1753 define transform-prebuilt-to-target-with-zipalign
1754 @echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1755 $(copy-file-to-target-with-zipalign)
1758 # Copy a prebuilt file to a target location, stripping "# comment" comments.
1759 define transform-prebuilt-to-target-strip-comments
1760 @echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1761 $(copy-file-to-target-strip-comments)
1827 @echo "target Generated: $(PRIVATE_MODULE) <= $<"
1834 ## Assertions about attributes of the target
1916 $$(transform-prebuilt-to-target)