Home | History | Annotate | Download | only in core
      1 ###########################################################
      2 ## Standard rules for copying files that are prebuilt
      3 ##
      4 ## Additional inputs from base_rules.make:
      5 ## None.
      6 ##
      7 ###########################################################
      8 
      9 ifneq ($(LOCAL_PREBUILT_LIBS),)
     10 $(error dont use LOCAL_PREBUILT_LIBS anymore LOCAL_PATH=$(LOCAL_PATH))
     11 endif
     12 ifneq ($(LOCAL_PREBUILT_EXECUTABLES),)
     13 $(error dont use LOCAL_PREBUILT_EXECUTABLES anymore LOCAL_PATH=$(LOCAL_PATH))
     14 endif
     15 ifneq ($(LOCAL_PREBUILT_JAVA_LIBRARIES),)
     16 $(error dont use LOCAL_PREBUILT_JAVA_LIBRARIES anymore LOCAL_PATH=$(LOCAL_PATH))
     17 endif
     18 
     19 ifdef LOCAL_PREBUILT_MODULE_FILE
     20 my_prebuilt_src_file := $(LOCAL_PREBUILT_MODULE_FILE)
     21 else
     22 my_prebuilt_src_file := $(LOCAL_PATH)/$(LOCAL_SRC_FILES)
     23 endif
     24 
     25 ifdef LOCAL_IS_HOST_MODULE
     26   my_prefix := HOST_
     27 else
     28   my_prefix := TARGET_
     29 endif
     30 ifeq (SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS))
     31   # Put the built targets of all shared libraries in a common directory
     32   # to simplify the link line.
     33   OVERRIDE_BUILT_MODULE_PATH := $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)
     34 endif
     35 
     36 ifneq ($(filter STATIC_LIBRARIES SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS)),)
     37   prebuilt_module_is_a_library := true
     38 else
     39   prebuilt_module_is_a_library :=
     40 endif
     41 
     42 # Don't install static libraries by default.
     43 ifndef LOCAL_UNINSTALLABLE_MODULE
     44 ifeq (STATIC_LIBRARIES,$(LOCAL_MODULE_CLASS))
     45   LOCAL_UNINSTALLABLE_MODULE := true
     46 endif
     47 endif
     48 
     49 ifeq ($(LOCAL_STRIP_MODULE),true)
     50   ifdef LOCAL_IS_HOST_MODULE
     51     $(error Cannot strip host module LOCAL_PATH=$(LOCAL_PATH))
     52   endif
     53   ifeq ($(filter SHARED_LIBRARIES EXECUTABLES,$(LOCAL_MODULE_CLASS)),)
     54     $(error Can strip only shared libraries or executables LOCAL_PATH=$(LOCAL_PATH))
     55   endif
     56   ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
     57     $(error Cannot strip scripts LOCAL_PATH=$(LOCAL_PATH))
     58   endif
     59   include $(BUILD_SYSTEM)/dynamic_binary.mk
     60   built_module := $(linked_module)
     61 else  # LOCAL_STRIP_MODULE not true
     62   include $(BUILD_SYSTEM)/base_rules.mk
     63   built_module := $(LOCAL_BUILT_MODULE)
     64 
     65 ifdef prebuilt_module_is_a_library
     66 export_includes := $(intermediates)/export_includes
     67 $(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
     68 $(export_includes) : $(LOCAL_MODULE_MAKEFILE)
     69 	@echo Export includes file: $< -- $@
     70 	$(hide) mkdir -p $(dir $@) && rm -f $@
     71 ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
     72 	$(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
     73 	        echo "-I $$d" >> $@; \
     74 	        done
     75 else
     76 	$(hide) touch $@
     77 endif
     78 
     79 $(LOCAL_BUILT_MODULE) : | $(intermediates)/export_includes
     80 endif  # prebuilt_module_is_a_library
     81 
     82 # The real dependency will be added after all Android.mks are loaded and the install paths
     83 # of the shared libraries are determined.
     84 ifdef LOCAL_INSTALLED_MODULE
     85 ifdef LOCAL_SHARED_LIBRARIES
     86 $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += $(LOCAL_MODULE):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(LOCAL_SHARED_LIBRARIES))
     87 
     88 # We also need the LOCAL_BUILT_MODULE dependency,
     89 # since we use -rpath-link which points to the built module's path.
     90 built_shared_libraries := \
     91     $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
     92     $(addsuffix $(so_suffix), \
     93         $(LOCAL_SHARED_LIBRARIES)))
     94 $(LOCAL_BUILT_MODULE) : $(built_shared_libraries)
     95 endif
     96 endif
     97 
     98 endif  # LOCAL_STRIP_MODULE not true
     99 
    100 PACKAGES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES))
    101 
    102 ifeq ($(LOCAL_CERTIFICATE),EXTERNAL)
    103   # The magic string "EXTERNAL" means this package will be signed with
    104   # the default dev key throughout the build process, but we expect
    105   # the final package to be signed with a different key.
    106   #
    107   # This can be used for packages where we don't have access to the
    108   # keys, but want the package to be predexopt'ed.
    109   LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
    110   PACKAGES.$(LOCAL_MODULE).EXTERNAL_KEY := 1
    111 
    112   $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
    113   $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
    114 endif
    115 ifeq ($(LOCAL_CERTIFICATE),)
    116   ifneq ($(filter APPS,$(LOCAL_MODULE_CLASS)),)
    117     # It is now a build error to add a prebuilt .apk without
    118     # specifying a key for it.
    119     $(error No LOCAL_CERTIFICATE specified for prebuilt "$(my_prebuilt_src_file)")
    120   endif
    121 else ifeq ($(LOCAL_CERTIFICATE),PRESIGNED)
    122   # The magic string "PRESIGNED" means this package is already checked
    123   # signed with its release key.
    124   #
    125   # By setting .CERTIFICATE but not .PRIVATE_KEY, this package will be
    126   # mentioned in apkcerts.txt (with certificate set to "PRESIGNED")
    127   # but the dexpreopt process will not try to re-sign the app.
    128   PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
    129   PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
    130 else
    131   # If this is not an absolute certificate, assign it to a generic one.
    132   ifeq ($(dir $(strip $(LOCAL_CERTIFICATE))),./)
    133       LOCAL_CERTIFICATE := $(dir $(DEFAULT_SYSTEM_DEV_CERTIFICATE))$(LOCAL_CERTIFICATE)
    134   endif
    135 
    136   PACKAGES.$(LOCAL_MODULE).PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
    137   PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
    138   PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
    139 
    140   $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
    141   $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
    142 endif
    143 
    144 ifneq ($(filter APPS,$(LOCAL_MODULE_CLASS)),)
    145 ifeq ($(LOCAL_CERTIFICATE),PRESIGNED)
    146 # Ensure that presigned .apks have been aligned.
    147 $(built_module) : $(my_prebuilt_src_file) | $(ZIPALIGN)
    148 	$(transform-prebuilt-to-target-with-zipalign)
    149 else
    150 # Sign and align non-presigned .apks.
    151 $(built_module) : $(my_prebuilt_src_file) | $(ACP) $(ZIPALIGN) $(SIGNAPK_JAR)
    152 	$(transform-prebuilt-to-target)
    153 	$(sign-package)
    154 	$(align-package)
    155 endif
    156 else
    157 ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
    158 $(built_module) : $(my_prebuilt_src_file)
    159 	$(transform-prebuilt-to-target-strip-comments)
    160 else
    161 $(built_module) : $(my_prebuilt_src_file) | $(ACP)
    162 	$(transform-prebuilt-to-target)
    163 ifneq ($(prebuilt_module_is_a_library),)
    164   ifneq ($(LOCAL_IS_HOST_MODULE),)
    165 	$(transform-host-ranlib-copy-hack)
    166   else
    167 	$(transform-ranlib-copy-hack)
    168   endif
    169 endif
    170 endif
    171 endif
    172 
    173 ifeq ($(LOCAL_IS_HOST_MODULE)$(LOCAL_MODULE_CLASS),JAVA_LIBRARIES)
    174 # for target java libraries, the LOCAL_BUILT_MODULE is in a product-specific dir,
    175 # while the deps should be in the common dir, so we make a copy in the common dir.
    176 # For nonstatic library, $(common_javalib_jar) is the dependency file,
    177 # while $(common_classes_jar) is used to link.
    178 common_classes_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(LOCAL_MODULE),,COMMON)/classes.jar
    179 common_javalib_jar := $(dir $(common_classes_jar))javalib.jar
    180 
    181 $(common_classes_jar) : $(my_prebuilt_src_file) | $(ACP)
    182 	$(transform-prebuilt-to-target)
    183 
    184 $(common_javalib_jar) : $(common_classes_jar) | $(ACP)
    185 	$(transform-prebuilt-to-target)
    186 
    187 # make sure the classes.jar and javalib.jar are built before $(LOCAL_BUILT_MODULE)
    188 $(built_module) : $(common_javalib_jar)
    189 endif # TARGET JAVA_LIBRARIES
    190