am 5ae4286b: Merge "Conditionally skip boot jars package name check." into lmp-dev

* commit '5ae4286b94813171982ff7fdebe88fd29fe7e590':
  Conditionally skip boot jars package name check.
This commit is contained in:
Ying Wang 2014-09-12 05:43:07 +00:00 committed by Android Git Automerger
commit 6d30b05e0e
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,8 @@
# Rules to check if classes in the boot jars are from the whitelisted packages.
#
ifneq ($(SKIP_BOOT_JARS_CHECK),true)
ifneq ($(TARGET_BUILD_PDK),true)
ifdef PRODUCT_BOOT_JARS
intermediates := $(call intermediates-dir-for, PACKAGING, boot-jars-package-check,,COMMON)
@ -40,3 +42,5 @@ check-boot-jars : $(stamp)
droidcore : check-boot-jars
endif # PRODUCT_BOOT_JARS
endif # TARGET_BUILD_PDK not true
endif # SKIP_BOOT_JARS_CHECK not true