am 3938ab25: am 1b6d0a65: allow prebuilts to specify LOCAL_CERTIFICATE so they can be resigned

Merge commit '3938ab2572e7c9d5894975c0076b271b2846faa9'

* commit '3938ab2572e7c9d5894975c0076b271b2846faa9':
  allow prebuilts to specify LOCAL_CERTIFICATE so they can be resigned
This commit is contained in:
Doug Zongker 2009-08-26 23:26:49 -07:00 committed by Android Git Automerger
commit ebb71b4ebb
1 changed files with 15 additions and 0 deletions

View File

@ -40,6 +40,21 @@ $(LOCAL_BUILT_MODULE) : $(LOCAL_PATH)/$(LOCAL_SRC_FILES) | $(ACP)
endif
endif
ifeq ($(LOCAL_CERTIFICATE),)
# can't re-sign this package, so predexopt is not available.
else
# If this is not an absolute certificate, assign it to a generic one.
ifeq ($(dir $(strip $(LOCAL_CERTIFICATE))),./)
LOCAL_CERTIFICATE := $(SRC_TARGET_DIR)/product/security/$(LOCAL_CERTIFICATE)
endif
PACKAGES.$(LOCAL_MODULE).PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
endif
ifneq ($(prebuilt_module_is_a_library),)
ifneq ($(LOCAL_IS_HOST_MODULE),)
$(transform-host-ranlib-copy-hack)