Makefile revision a34fa95c164a9388ed0b84b17a63241bffd4132a
1# Put some miscellaneous rules here
2
3# Pick a reasonable string to use to identify files.
4ifneq "" "$(filter eng.%,$(BUILD_NUMBER))"
5  # BUILD_NUMBER has a timestamp in it, which means that
6  # it will change every time.  Pick a stable value.
7  FILE_NAME_TAG := eng.$(USER)
8else
9  FILE_NAME_TAG := $(BUILD_NUMBER)
10endif
11
12# -----------------------------------------------------------------
13# Define rules to copy PRODUCT_COPY_FILES defined by the product.
14# PRODUCT_COPY_FILES contains words like <source file>:<dest file>.
15# <dest file> is relative to $(PRODUCT_OUT), so it should look like,
16# e.g., "system/etc/file.xml".
17# The filter part means "only eval the copy-one-file rule if this
18# src:dest pair is the first one to match %:dest"
19$(foreach cf,$(PRODUCT_COPY_FILES), \
20  $(eval _src := $(call word-colon,1,$(cf))) \
21  $(eval _dest := $(call word-colon,2,$(cf))) \
22  $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \
23  $(if $(filter $(_src):$(_dest),$(firstword $(filter %:$(_dest),$(PRODUCT_COPY_FILES)))), \
24    $(eval $(call copy-one-file,$(_src),$(_fulldest))),) \
25  $(eval ALL_DEFAULT_INSTALLED_MODULES += $(_fulldest)) \
26 )
27
28# -----------------------------------------------------------------
29# docs/index.html
30gen := $(OUT_DOCS)/index.html
31ALL_DOCS += $(gen)
32$(gen): frameworks/base/docs/docs-redirect-index.html
33	@mkdir -p $(dir $@)
34	@cp -f $< $@
35
36# -----------------------------------------------------------------
37# default.prop
38INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_ROOT_OUT)/default.prop
39ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_TARGET)
40ADDITIONAL_DEFAULT_PROPERTIES := \
41	$(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES))
42
43$(INSTALLED_DEFAULT_PROP_TARGET):
44	@echo Target buildinfo: $@
45	@mkdir -p $(dir $@)
46	$(hide) echo "#" > $@; \
47	        echo "# ADDITIONAL_DEFAULT_PROPERTIES" >> $@; \
48	        echo "#" >> $@;
49	$(hide) $(foreach line,$(ADDITIONAL_DEFAULT_PROPERTIES), \
50		echo "$(line)" >> $@;)
51
52# -----------------------------------------------------------------
53# build.prop
54INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop
55ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_BUILD_PROP_TARGET)
56ADDITIONAL_BUILD_PROPERTIES := \
57	$(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))
58
59# A list of arbitrary tags describing the build configuration.
60# Force ":=" so we can use +=
61BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS)
62ifeq ($(TARGET_BUILD_TYPE),debug)
63  BUILD_VERSION_TAGS += debug
64endif
65# Apps are always signed with test keys, and may be re-signed in a post-build
66# step.  If that happens, the "test-keys" tag will be removed by that step.
67BUILD_VERSION_TAGS += test-keys
68BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS)))
69
70# A human-readable string that descibes this build in detail.
71build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER) $(BUILD_VERSION_TAGS)
72$(INSTALLED_BUILD_PROP_TARGET): PRIVATE_BUILD_DESC := $(build_desc)
73
74# The string used to uniquely identify this build;  used by the OTA server.
75ifeq (,$(strip $(BUILD_FINGERPRINT)))
76  BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
77endif
78ifneq ($(words $(BUILD_FINGERPRINT)),1)
79  $(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)")
80endif
81
82# Display parameters shown under Settings -> About Phone
83ifeq ($(TARGET_BUILD_VARIANT),user)
84  # User builds should show:
85  # release build number or branch.buld_number non-release builds
86
87  # Dev. branches should have DISPLAY_BUILD_NUMBER set
88  ifeq "true" "$(DISPLAY_BUILD_NUMBER)"
89    BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER)
90  else
91    BUILD_DISPLAY_ID := $(BUILD_ID)
92  endif
93else
94  # Non-user builds should show detailed build information
95  BUILD_DISPLAY_ID := $(build_desc)
96endif
97
98# Selects the first locale in the list given as the argument,
99# and splits it into language and region, which each may be
100# empty.
101define default-locale
102$(subst _, , $(firstword $(1)))
103endef
104
105# Selects the first locale in the list given as the argument
106# and returns the language (or the region)
107define default-locale-language
108$(word 2, 2, $(call default-locale, $(1)))
109endef
110define default-locale-region
111$(word 3, 3, $(call default-locale, $(1)))
112endef
113
114BUILDINFO_SH := build/tools/buildinfo.sh
115$(INSTALLED_BUILD_PROP_TARGET): $(BUILDINFO_SH) $(INTERNAL_BUILD_ID_MAKEFILE)
116	@echo Target buildinfo: $@
117	@mkdir -p $(dir $@)
118	$(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \
119			TARGET_DEVICE="$(TARGET_DEVICE)" \
120			PRODUCT_NAME="$(TARGET_PRODUCT)" \
121			PRODUCT_BRAND="$(PRODUCT_BRAND)" \
122			PRODUCT_DEFAULT_LANGUAGE="$(call default-locale-language,$(PRODUCT_LOCALES))" \
123			PRODUCT_DEFAULT_REGION="$(call default-locale-region,$(PRODUCT_LOCALES))" \
124			PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \
125			PRODUCT_MODEL="$(PRODUCT_MODEL)" \
126			PRODUCT_MANUFACTURER="$(PRODUCT_MANUFACTURER)" \
127			PRIVATE_BUILD_DESC="$(PRIVATE_BUILD_DESC)" \
128			BUILD_ID="$(BUILD_ID)" \
129			BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \
130			BUILD_NUMBER="$(BUILD_NUMBER)" \
131			PLATFORM_VERSION="$(PLATFORM_VERSION)" \
132			PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \
133			PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \
134			BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \
135			TARGET_BOOTLOADER_BOARD_NAME="$(TARGET_BOOTLOADER_BOARD_NAME)" \
136			BUILD_FINGERPRINT="$(BUILD_FINGERPRINT)" \
137			TARGET_BOARD_PLATFORM="$(TARGET_BOARD_PLATFORM)" \
138			TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \
139			TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \
140	        bash $(BUILDINFO_SH) > $@
141	$(hide) if [ -f $(TARGET_DEVICE_DIR)/system.prop ]; then \
142	          cat $(TARGET_DEVICE_DIR)/system.prop >> $@; \
143	        fi
144	$(if $(ADDITIONAL_BUILD_PROPERTIES), \
145		$(hide) echo >> $@; \
146		        echo "#" >> $@; \
147		        echo "# ADDITIONAL_BUILD_PROPERTIES" >> $@; \
148		        echo "#" >> $@; )
149	$(hide) $(foreach line,$(ADDITIONAL_BUILD_PROPERTIES), \
150		echo "$(line)" >> $@;)
151
152build_desc :=
153
154# -----------------------------------------------------------------
155# sdk-build.prop
156#
157# There are certain things in build.prop that we don't want to
158# ship with the sdk; remove them.
159
160# This must be a list of entire property keys followed by
161# "=" characters, without any internal spaces.
162sdk_build_prop_remove := \
163	ro.build.user= \
164	ro.build.host= \
165	ro.product.brand= \
166	ro.product.manufacturer= \
167	ro.product.device=
168# TODO: Remove this soon-to-be obsolete property
169sdk_build_prop_remove += ro.build.product=
170INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop
171$(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET)
172	@echo SDK buildinfo: $@
173	@mkdir -p $(dir $@)
174	$(hide) grep -v "$(subst $(space),\|,$(strip \
175				$(sdk_build_prop_remove)))" $< > $@.tmp
176	$(hide) for x in $(sdk_build_prop_remove); do \
177				echo "$$x"generic >> $@.tmp; done
178	$(hide) mv $@.tmp $@
179
180# -----------------------------------------------------------------
181# package stats
182PACKAGE_STATS_FILE := $(PRODUCT_OUT)/package-stats.txt
183PACKAGES_TO_STAT := \
184    $(sort $(filter $(TARGET_OUT)/% $(TARGET_OUT_DATA)/%, \
185	$(filter %.jar %.apk, $(ALL_DEFAULT_INSTALLED_MODULES))))
186$(PACKAGE_STATS_FILE): $(PACKAGES_TO_STAT)
187	@echo Package stats: $@
188	@mkdir -p $(dir $@)
189	$(hide) rm -f $@
190	$(hide) build/tools/dump-package-stats $^ > $@
191
192.PHONY: package-stats
193package-stats: $(PACKAGE_STATS_FILE)
194
195# -----------------------------------------------------------------
196# Cert-to-package mapping.  Used by the post-build signing tools.
197name := $(TARGET_PRODUCT)
198ifeq ($(TARGET_BUILD_TYPE),debug)
199  name := $(name)_debug
200endif
201name := $(name)-apkcerts-$(FILE_NAME_TAG)
202intermediates := \
203	$(call intermediates-dir-for,PACKAGING,apkcerts)
204APKCERTS_FILE := $(intermediates)/$(name).txt
205# Depending on the built packages isn't exactly right,
206# but it should guarantee that the apkcerts file is rebuilt
207# if any packages change which certs they're signed with.
208all_built_packages := $(foreach p,$(PACKAGES),$(ALL_MODULES.$(p).BUILT))
209ifneq ($(TARGET_BUILD_APPS),)
210# We don't need to really build all the modules for apps_only build.
211$(APKCERTS_FILE):
212else
213$(APKCERTS_FILE): $(all_built_packages)
214endif
215	@echo APK certs list: $@
216	@mkdir -p $(dir $@)
217	@rm -f $@
218	$(hide) $(foreach p,$(PACKAGES),\
219          $(if $(PACKAGES.$(p).EXTERNAL_KEY),\
220	    echo 'name="$(p).apk" certificate="EXTERNAL" \
221	         private_key=""' >> $@;,\
222	    echo 'name="$(p).apk" certificate="$(PACKAGES.$(p).CERTIFICATE)" \
223	         private_key="$(PACKAGES.$(p).PRIVATE_KEY)"' >> $@;))
224
225.PHONY: apkcerts-list
226apkcerts-list: $(APKCERTS_FILE)
227
228$(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt)
229
230# -----------------------------------------------------------------
231# module info file
232ifdef CREATE_MODULE_INFO_FILE
233  MODULE_INFO_FILE := $(PRODUCT_OUT)/module-info.txt
234  $(info Generating $(MODULE_INFO_FILE)...)
235  $(shell rm -f $(MODULE_INFO_FILE))
236  $(foreach m,$(ALL_MODULES), \
237    $(shell echo "NAME=\"$(m)\"" \
238	"PATH=\"$(strip $(ALL_MODULES.$(m).PATH))\"" \
239	"TAGS=\"$(strip $(filter-out _%,$(ALL_MODULES.$(m).TAGS)))\"" \
240	"BUILT=\"$(strip $(ALL_MODULES.$(m).BUILT))\"" \
241	"INSTALLED=\"$(strip $(ALL_MODULES.$(m).INSTALLED))\"" >> $(MODULE_INFO_FILE)))
242endif
243
244# -----------------------------------------------------------------
245
246# The test key is used to sign this package, and as the key required
247# for future OTA packages installed by this system.  Actual product
248# deliverables will be re-signed by hand.  We expect this file to
249# exist with the suffixes ".x509.pem" and ".pk8".
250DEFAULT_KEY_CERT_PAIR := $(SRC_TARGET_DIR)/product/security/testkey
251
252
253# Rules that need to be present for the simulator, even
254# if they don't do anything.
255.PHONY: systemimage
256systemimage:
257
258# -----------------------------------------------------------------
259
260.PHONY: event-log-tags
261
262# Produce an event logs tag file for everything we know about, in order
263# to properly allocate numbers.  Then produce a file that's filtered
264# for what's going to be installed.
265
266all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt
267
268# Include tags from all packages that we know about
269all_event_log_tags_src := \
270    $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS)))
271
272$(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src)
273$(all_event_log_tags_file): $(all_event_log_tags_src)
274	$(hide) mkdir -p $(dir $@)
275	$(hide) build/tools/merge-event-log-tags.py -o $@ $(PRIVATE_SRC_FILES)
276
277
278event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags
279
280# Include tags from all packages included in this product, plus all
281# tags that are part of the system (ie, not in a vendor/ or device/
282# directory).
283event_log_tags_src := \
284    $(sort $(foreach m,\
285      $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES) \
286      $(call module-names-for-tag-list,user), \
287      $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \
288      $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src)))
289
290$(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src)
291$(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file)
292$(event_log_tags_file): $(event_log_tags_src) $(all_event_log_tags_file)
293	$(hide) mkdir -p $(dir $@)
294	$(hide) build/tools/merge-event-log-tags.py -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES)
295
296event-log-tags: $(event_log_tags_file)
297
298ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file)
299
300
301ifneq ($(TARGET_SIMULATOR),true)
302
303# #################################################################
304# Targets for boot/OS images
305# #################################################################
306
307# -----------------------------------------------------------------
308# the ramdisk
309INTERNAL_RAMDISK_FILES := $(filter $(TARGET_ROOT_OUT)/%, \
310	$(ALL_PREBUILT) \
311	$(ALL_COPIED_HEADERS) \
312	$(ALL_GENERATED_SOURCES) \
313	$(ALL_DEFAULT_INSTALLED_MODULES))
314
315BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
316
317# We just build this directly to the install location.
318INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET)
319$(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) | $(MINIGZIP)
320	$(call pretty,"Target ram disk: $@")
321	$(hide) $(MKBOOTFS) $(TARGET_ROOT_OUT) | $(MINIGZIP) > $@
322
323
324ifneq ($(strip $(TARGET_NO_KERNEL)),true)
325
326# -----------------------------------------------------------------
327# the boot image, which is a collection of other images.
328INTERNAL_BOOTIMAGE_ARGS := \
329	$(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
330	--kernel $(INSTALLED_KERNEL_TARGET) \
331	--ramdisk $(INSTALLED_RAMDISK_TARGET)
332
333INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS))
334
335BOARD_KERNEL_CMDLINE := $(strip $(BOARD_KERNEL_CMDLINE))
336ifdef BOARD_KERNEL_CMDLINE
337  INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
338endif
339
340BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE))
341ifdef BOARD_KERNEL_BASE
342  INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
343endif
344
345BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE))
346ifdef BOARD_KERNEL_PAGESIZE
347  INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE)
348endif
349
350INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
351
352ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true)
353tmp_dir_for_image := $(call intermediates-dir-for,EXECUTABLES,boot_img)/bootimg
354INTERNAL_BOOTIMAGE_ARGS += --tmpdir $(tmp_dir_for_image)
355INTERNAL_BOOTIMAGE_ARGS += --genext2fs $(MKEXT2IMG)
356$(INSTALLED_BOOTIMAGE_TARGET): $(MKEXT2IMG) $(INTERNAL_BOOTIMAGE_FILES)
357	$(call pretty,"Target boot image: $@")
358	$(hide) $(MKEXT2BOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
359
360else # TARGET_BOOTIMAGE_USE_EXT2 != true
361
362$(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES)
363	$(call pretty,"Target boot image: $@")
364	$(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
365	$(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw)
366endif # TARGET_BOOTIMAGE_USE_EXT2
367
368else	# TARGET_NO_KERNEL
369# HACK: The top-level targets depend on the bootimage.  Not all targets
370# can produce a bootimage, though, and emulator targets need the ramdisk
371# instead.  Fake it out by calling the ramdisk the bootimage.
372# TODO: make the emulator use bootimages, and make mkbootimg accept
373#       kernel-less inputs.
374INSTALLED_BOOTIMAGE_TARGET := $(INSTALLED_RAMDISK_TARGET)
375endif
376
377# -----------------------------------------------------------------
378# NOTICE files
379#
380# This needs to be before the systemimage rules, because it adds to
381# ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files
382# go into the systemimage.
383
384.PHONY: notice_files
385
386# Create the rule to combine the files into text and html forms
387# $(1) - Plain text output file
388# $(2) - HTML output file
389# $(3) - File title
390# $(4) - Directory to use.  Notice files are all $(4)/src.  Other
391#		 directories in there will be used for scratch
392# $(5) - Dependencies for the output files
393#
394# The algorithm here is that we go collect a hash for each of the notice
395# files and write the names of the files that match that hash.  Then
396# to generate the real files, we go print out all of the files and their
397# hashes.
398#
399# These rules are fairly complex, so they depend on this makefile so if
400# it changes, they'll run again.
401#
402# TODO: We could clean this up so that we just record the locations of the
403# original notice files instead of making rules to copy them somwehere.
404# Then we could traverse that without quite as much bash drama.
405define combine-notice-files
406$(1) $(2): PRIVATE_MESSAGE := $(3)
407$(1) $(2) $(4)/hash-timestamp: PRIVATE_DIR := $(4)
408$(4)/hash-timestamp: $(5) $(BUILD_SYSTEM)/Makefile
409	@echo Finding NOTICE files: $$@
410	$$(hide) rm -rf $$@ $$(PRIVATE_DIR)/hash
411	$$(hide) mkdir -p $$(PRIVATE_DIR)/hash
412	$$(hide) for file in $$$$(find $$(PRIVATE_DIR)/src -type f); do \
413			hash=$$$$($(MD5SUM) $$$$file | sed -e "s/ .*//"); \
414			hashfile=$$(PRIVATE_DIR)/hash/$$$$hash; \
415			echo $$$$file >> $$$$hashfile; \
416		done
417	$$(hide) touch $$@
418$(1): $(4)/hash-timestamp
419	@echo Combining NOTICE files: $$@
420	$$(hide) mkdir -p $$(dir $$@)
421	$$(hide) echo $$(PRIVATE_MESSAGE) > $$@
422	$$(hide) find $$(PRIVATE_DIR)/hash -type f | xargs cat | sort | \
423		sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  \1:" >> $$@
424	$$(hide) echo >> $$@
425	$$(hide) echo >> $$@
426	$$(hide) echo >> $$@
427	$$(hide) for hashfile in $$$$(find $$(PRIVATE_DIR)/hash -type f); do \
428			echo "============================================================"\
429				>> $$@; \
430			echo "Notices for file(s):" >> $$@; \
431			cat $$$$hashfile | sort | \
432				sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  \1:" >> \
433				$$@; \
434			echo "------------------------------------------------------------"\
435				>> $$@; \
436			echo >> $$@; \
437			orig=$$$$(head -n 1 $$$$hashfile); \
438			cat $$$$orig >> $$@; \
439			echo >> $$@; \
440			echo >> $$@; \
441			echo >> $$@; \
442		done
443$(2): $(4)/hash-timestamp
444	@echo Combining NOTICE files: $$@
445	$$(hide) mkdir -p $$(dir $$@)
446	$$(hide) echo "<html><head>" > $$@
447	$$(hide) echo "<style type=\"text/css\">" >> $$@
448	$$(hide) echo "body { padding: 0; font-family: sans-serif; }" >> $$@
449	$$(hide) echo ".same-license { background-color: #eeeeee; border-top: 20px solid white; padding: 10px; }" >> $$@
450	$$(hide) echo ".label { font-weight: bold; }" >> $$@
451	$$(hide) echo ".file-list { margin-left: 1em; font-color: blue; }" >> $$@
452	$$(hide) echo "</style>" >> $$@
453	$$(hide) echo "</head><body topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\">" >> $$@
454	$$(hide) echo "<table cellpading=\"0\" cellspacing=\"0\" border=\"0\">" \
455		>> $$@
456	$$(hide) for hashfile in $$$$(find $$(PRIVATE_DIR)/hash -type f); do \
457			cat $$$$hashfile | sort | \
458				sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  <a name=\"\1\"></a>:" >> \
459				$$@; \
460			echo "<tr><td class=\"same-license\">" >> $$@; \
461			echo "<div class=\"label\">Notices for file(s):</div>" >> $$@; \
462			echo "<div class=\"file-list\">" >> $$@; \
463			cat $$$$hashfile | sort | \
464				sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt:  \1<br/>:" >> $$@; \
465			echo "</div><!-- file-list -->" >> $$@; \
466			echo >> $$@; \
467			orig=$$$$(head -n 1 $$$$hashfile); \
468			echo "<pre class=\"license-text\">" >> $$@; \
469			cat $$$$orig | sed -e "s/\&/\&amp;/g" | sed -e "s/</\&lt;/g" \
470					| sed -e "s/>/\&gt;/g" >> $$@; \
471			echo "</pre><!-- license-text -->" >> $$@; \
472			echo "</td></tr><!-- same-license -->" >> $$@; \
473			echo >> $$@; \
474			echo >> $$@; \
475			echo >> $$@; \
476		done
477	$$(hide) echo "</table>" >> $$@
478	$$(hide) echo "</body></html>" >> $$@
479notice_files: $(1) $(2)
480endef
481
482# TODO These intermediate NOTICE.txt/NOTICE.html files should go into
483# TARGET_OUT_NOTICE_FILES now that the notice files are gathered from
484# the src subdirectory.
485
486target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt
487target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html
488target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz
489tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt
490tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html
491
492kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt
493
494$(eval $(call combine-notice-files, \
495			$(target_notice_file_txt), \
496			$(target_notice_file_html), \
497			"Notices for files contained in the filesystem images in this directory:", \
498			$(TARGET_OUT_NOTICE_FILES), \
499			$(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file)))
500
501$(eval $(call combine-notice-files, \
502			$(tools_notice_file_txt), \
503			$(tools_notice_file_html), \
504			"Notices for files contained in the tools directory:", \
505			$(HOST_OUT_NOTICE_FILES), \
506			$(ALL_DEFAULT_INSTALLED_MODULES)))
507
508# Install the html file at /system/etc/NOTICE.html.gz.
509# This is not ideal, but this is very late in the game, after a lot of
510# the module processing has already been done -- in fact, we used the
511# fact that all that has been done to get the list of modules that we
512# need notice files for.
513$(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP)
514	$(hide) $(MINIGZIP) -9 < $< > $@
515installed_notice_html_gz := $(TARGET_OUT)/etc/NOTICE.html.gz
516$(installed_notice_html_gz): $(target_notice_file_html_gz) | $(ACP)
517	$(copy-file-to-target)
518
519# if we've been run my mm, mmm, etc, don't reinstall this every time
520ifeq ($(ONE_SHOT_MAKEFILE),)
521ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_gz)
522endif
523
524# The kernel isn't really a module, so to get its module file in there, we
525# make the target NOTICE files depend on this particular file too, which will
526# then be in the right directory for the find in combine-notice-files to work.
527$(kernel_notice_file): \
528	    prebuilt/$(TARGET_PREBUILT_TAG)/kernel/LINUX_KERNEL_COPYING \
529	    | $(ACP)
530	@echo Copying: $@
531	$(hide) mkdir -p $(dir $@)
532	$(hide) $(ACP) $< $@
533
534
535# -----------------------------------------------------------------
536# Build a keystore with the authorized keys in it, used to verify the
537# authenticity of downloaded OTA packages.
538#
539# This rule adds to ALL_DEFAULT_INSTALLED_MODULES, so it needs to come
540# before the rules that use that variable to build the image.
541ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip
542$(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
543$(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR))
544	$(hide) rm -f $@
545	$(hide) mkdir -p $(dir $@)
546	$(hide) zip -qj $@ $<
547
548.PHONY: otacerts
549otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip
550
551
552# #################################################################
553# Targets for user images
554# #################################################################
555
556INTERNAL_USERIMAGES_EXT_VARIANT :=
557ifeq ($(TARGET_USERIMAGES_USE_EXT2),true)
558INTERNAL_USERIMAGES_USE_EXT := true
559INTERNAL_USERIMAGES_EXT_VARIANT := ext2
560else
561ifeq ($(TARGET_USERIMAGES_USE_EXT3),true)
562INTERNAL_USERIMAGES_USE_EXT := true
563INTERNAL_USERIMAGES_EXT_VARIANT := ext3
564else
565ifeq ($(TARGET_USERIMAGES_USE_EXT4),true)
566INTERNAL_USERIMAGES_USE_EXT := true
567INTERNAL_USERIMAGES_EXT_VARIANT := ext4
568endif
569endif
570endif
571
572ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
573INTERNAL_USERIMAGES_DEPS := $(MKEXT2USERIMG) $(MAKE_EXT4FS)
574INTERNAL_USERIMAGES_BINARY_PATHS := $(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))
575
576# $(1): src directory
577# $(2): output file
578# $(3): mount point
579# $(4): ext variant (ext2, ext3, ext4)
580# $(5): size of the partition
581define build-userimage-ext-target
582  @mkdir -p $(dir $(2))
583    $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$(PATH) \
584	  $(MKEXT2USERIMG) $(1) $(2) $(4) $(3) $(5)
585endef
586else
587INTERNAL_USERIMAGES_DEPS := $(MKYAFFS2)
588endif
589
590# -----------------------------------------------------------------
591# Recovery image
592
593# If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true
594ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY) $(BUILD_TINY_ANDROID)))
595
596INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
597
598recovery_initrc := $(call include-path-for, recovery)/etc/init.rc
599recovery_kernel := $(INSTALLED_KERNEL_TARGET) # same as a non-recovery system
600recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
601recovery_build_prop := $(INSTALLED_BUILD_PROP_TARGET)
602recovery_binary := $(call intermediates-dir-for,EXECUTABLES,recovery)/recovery
603recovery_resources_common := $(call include-path-for, recovery)/res
604recovery_resources_private := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery/res))
605recovery_resource_deps := $(shell find $(recovery_resources_common) \
606  $(recovery_resources_private) -type f)
607recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab))
608
609ifeq ($(recovery_resources_private),)
610  $(info No private recovery resources for TARGET_DEVICE $(TARGET_DEVICE))
611endif
612
613ifeq ($(recovery_fstab),)
614  $(info No recovery.fstab for TARGET_DEVICE $(TARGET_DEVICE))
615endif
616
617INTERNAL_RECOVERYIMAGE_ARGS := \
618	$(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
619	--kernel $(recovery_kernel) \
620	--ramdisk $(recovery_ramdisk)
621
622# Assumes this has already been stripped
623ifdef BOARD_KERNEL_CMDLINE
624  INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
625endif
626ifdef BOARD_KERNEL_BASE
627  INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
628endif
629BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE))
630ifdef BOARD_KERNEL_PAGESIZE
631  INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE)
632endif
633
634# Keys authorized to sign OTA packages this build will accept.  The
635# build always uses test-keys for this; release packaging tools will
636# substitute other keys for this one.
637OTA_PUBLIC_KEYS := $(SRC_TARGET_DIR)/product/security/testkey.x509.pem
638
639# Generate a file containing the keys that will be read by the
640# recovery binary.
641RECOVERY_INSTALL_OTA_KEYS := \
642	$(call intermediates-dir-for,PACKAGING,ota_keys)/keys
643DUMPKEY_JAR := $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar
644$(RECOVERY_INSTALL_OTA_KEYS): PRIVATE_OTA_PUBLIC_KEYS := $(OTA_PUBLIC_KEYS)
645$(RECOVERY_INSTALL_OTA_KEYS): $(OTA_PUBLIC_KEYS) $(DUMPKEY_JAR)
646	@echo "DumpPublicKey: $@ <= $(PRIVATE_OTA_PUBLIC_KEYS)"
647	@rm -rf $@
648	@mkdir -p $(dir $@)
649	java -jar $(DUMPKEY_JAR) $(PRIVATE_OTA_PUBLIC_KEYS) > $@
650
651$(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTFS) $(MKBOOTIMG) $(MINIGZIP) \
652		$(INSTALLED_RAMDISK_TARGET) \
653		$(INSTALLED_BOOTIMAGE_TARGET) \
654		$(recovery_binary) \
655		$(recovery_initrc) $(recovery_kernel) \
656		$(INSTALLED_2NDBOOTLOADER_TARGET) \
657		$(recovery_build_prop) $(recovery_resource_deps) \
658		$(recovery_fstab) \
659		$(RECOVERY_INSTALL_OTA_KEYS)
660	@echo ----- Making recovery image ------
661	rm -rf $(TARGET_RECOVERY_OUT)
662	mkdir -p $(TARGET_RECOVERY_OUT)
663	mkdir -p $(TARGET_RECOVERY_ROOT_OUT)
664	mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/etc
665	mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/tmp
666	echo Copying baseline ramdisk...
667	cp -R $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT)
668	rm $(TARGET_RECOVERY_ROOT_OUT)/init*.rc
669	echo Modifying ramdisk contents...
670	cp -f $(recovery_initrc) $(TARGET_RECOVERY_ROOT_OUT)/
671	cp -f $(recovery_binary) $(TARGET_RECOVERY_ROOT_OUT)/sbin/
672	cp -rf $(recovery_resources_common) $(TARGET_RECOVERY_ROOT_OUT)/
673	$(foreach item,$(recovery_resources_private), \
674	  cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/)
675	$(foreach item,$(recovery_fstab), \
676	  cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/etc/recovery.fstab)
677	cp $(RECOVERY_INSTALL_OTA_KEYS) $(TARGET_RECOVERY_ROOT_OUT)/res/keys
678	cat $(INSTALLED_DEFAULT_PROP_TARGET) $(recovery_build_prop) \
679	        > $(TARGET_RECOVERY_ROOT_OUT)/default.prop
680	$(MKBOOTFS) $(TARGET_RECOVERY_ROOT_OUT) | $(MINIGZIP) > $(recovery_ramdisk)
681	$(MKBOOTIMG) $(INTERNAL_RECOVERYIMAGE_ARGS) --output $@
682	@echo ----- Made recovery image -------- $@
683	$(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw)
684
685else
686INSTALLED_RECOVERYIMAGE_TARGET :=
687endif
688
689.PHONY: recoveryimage
690recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET)
691
692ifneq ($(BOARD_NAND_PAGE_SIZE),)
693mkyaffs2_extra_flags := -c $(BOARD_NAND_PAGE_SIZE)
694else
695mkyaffs2_extra_flags :=
696endif
697
698
699# -----------------------------------------------------------------
700# system image
701#
702systemimage_intermediates := \
703	$(call intermediates-dir-for,PACKAGING,systemimage)
704BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img
705
706INTERNAL_SYSTEMIMAGE_FILES := $(filter $(TARGET_OUT)/%, \
707	$(ALL_PREBUILT) \
708	$(ALL_COPIED_HEADERS) \
709	$(ALL_GENERATED_SOURCES) \
710	$(ALL_DEFAULT_INSTALLED_MODULES))
711
712ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
713## generate an ext2 image
714# $(1): output file
715define build-systemimage-target
716    @echo "Target system fs image: $(1)"
717    $(call build-userimage-ext-target,$(TARGET_OUT),$(1),system,$(INTERNAL_USERIMAGES_EXT_VARIANT),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE))
718endef
719
720else # INTERNAL_USERIMAGES_USE_EXT != true
721
722## generate a yaffs2 image
723# $(1): output file
724define build-systemimage-target
725    @echo "Target system fs image: $(1)"
726    @mkdir -p $(dir $(1))
727    $(hide) $(MKYAFFS2) -f $(mkyaffs2_extra_flags) $(TARGET_OUT) $(1)
728endef
729endif # INTERNAL_USERIMAGES_USE_EXT
730
731$(BUILT_SYSTEMIMAGE): $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS)
732	$(call build-systemimage-target,$@)
733
734INSTALLED_SYSTEMIMAGE := $(PRODUCT_OUT)/system.img
735SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT)
736
737# The system partition needs room for the recovery image as well.  We
738# now store the recovery image as a binary patch using the boot image
739# as the source (since they are very similar).  Generate the patch so
740# we can see how big it's going to be, and include that in the system
741# image size check calculation.
742ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),)
743intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch)
744RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p
745$(RECOVERY_FROM_BOOT_PATCH): $(INSTALLED_RECOVERYIMAGE_TARGET) \
746                             $(INSTALLED_BOOTIMAGE_TARGET) \
747			     $(HOST_OUT_EXECUTABLES)/imgdiff \
748	                     $(HOST_OUT_EXECUTABLES)/bsdiff
749	@echo "Construct recovery from boot"
750	mkdir -p $(dir $@)
751	PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(HOST_OUT_EXECUTABLES)/imgdiff $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@
752endif
753
754
755$(INSTALLED_SYSTEMIMAGE): $(BUILT_SYSTEMIMAGE) $(RECOVERY_FROM_BOOT_PATCH) | $(ACP)
756	@echo "Install system fs image: $@"
757	$(copy-file-to-target)
758	$(hide) $(call assert-max-image-size,$@ $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
759
760systemimage: $(INSTALLED_SYSTEMIMAGE)
761
762.PHONY: systemimage-nodeps snod
763systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \
764	            | $(INTERNAL_USERIMAGES_DEPS)
765	@echo "make $@: ignoring dependencies"
766	$(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE))
767	$(hide) $(call assert-max-image-size,$(INSTALLED_SYSTEMIMAGE),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
768
769#######
770## system tarball
771define build-systemtarball-target
772    $(call pretty,"Target system fs tarball: $(INSTALLED_SYSTEMTARBALL_TARGET)")
773    $(MKTARBALL) $(FS_GET_STATS) \
774		$(PRODUCT_OUT) system $(PRIVATE_SYSTEM_TAR) \
775		$(INSTALLED_SYSTEMTARBALL_TARGET)
776endef
777
778system_tar := $(PRODUCT_OUT)/system.tar
779INSTALLED_SYSTEMTARBALL_TARGET := $(system_tar).bz2
780$(INSTALLED_SYSTEMTARBALL_TARGET): PRIVATE_SYSTEM_TAR := $(system_tar)
781$(INSTALLED_SYSTEMTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_SYSTEMIMAGE_FILES)
782	$(build-systemtarball-target)
783
784.PHONY: systemtarball-nodeps
785systemtarball-nodeps: $(FS_GET_STATS) \
786                      $(filter-out systemtarball-nodeps stnod,$(MAKECMDGOALS))
787	$(build-systemtarball-target)
788
789.PHONY: stnod
790stnod: systemtarball-nodeps
791
792
793# -----------------------------------------------------------------
794# data partition image
795INTERNAL_USERDATAIMAGE_FILES := \
796	$(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES))
797
798ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
799## Generate an ext image
800define build-userdataimage-target
801    $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
802    @mkdir -p $(TARGET_OUT_DATA)
803    $(call build-userimage-ext-target,$(TARGET_OUT_DATA),$(INSTALLED_USERDATAIMAGE_TARGET),data,$(INTERNAL_USERIMAGES_EXT_VARIANT),$(BOARD_USERDATAIMAGE_PARTITION_SIZE))
804    $(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
805endef
806
807else # INTERNAL_USERIMAGES_USE_EXT != true
808
809## Generate a yaffs2 image
810define build-userdataimage-target
811    $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
812    @mkdir -p $(TARGET_OUT_DATA)
813    $(hide) $(MKYAFFS2) -f $(mkyaffs2_extra_flags) $(TARGET_OUT_DATA) $(INSTALLED_USERDATAIMAGE_TARGET)
814    $(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
815endef
816endif # INTERNAL_USERIMAGES_USE_EXT
817
818BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img
819
820# We just build this directly to the install location.
821INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET)
822$(INSTALLED_USERDATAIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) \
823                                   $(INTERNAL_USERDATAIMAGE_FILES)
824	$(build-userdataimage-target)
825
826.PHONY: userdataimage-nodeps
827userdataimage-nodeps: $(INTERNAL_USERIMAGES_DEPS)
828	$(build-userdataimage-target)
829
830#######
831## data partition tarball
832define build-userdatatarball-target
833    $(call pretty,"Target userdata fs tarball: " \
834                  "$(INSTALLED_USERDATATARBALL_TARGET)")
835    $(MKTARBALL) $(FS_GET_STATS) \
836		$(PRODUCT_OUT) data $(PRIVATE_USERDATA_TAR) \
837		$(INSTALLED_USERDATATARBALL_TARGET)
838endef
839
840userdata_tar := $(PRODUCT_OUT)/userdata.tar
841INSTALLED_USERDATATARBALL_TARGET := $(userdata_tar).bz2
842$(INSTALLED_USERDATATARBALL_TARGET): PRIVATE_USERDATA_TAR := $(userdata_tar)
843$(INSTALLED_USERDATATARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_USERDATAIMAGE_FILES)
844	$(build-userdatatarball-target)
845
846.PHONY: userdatatarball-nodeps
847userdatatarball-nodeps: $(FS_GET_STATS)
848	$(build-userdatatarball-target)
849
850
851# -----------------------------------------------------------------
852# bring in the installer image generation defines if necessary
853ifeq ($(TARGET_USE_DISKINSTALLER),true)
854include bootable/diskinstaller/config.mk
855endif
856
857# -----------------------------------------------------------------
858# host tools needed to build OTA packages
859
860OTATOOLS :=  $(HOST_OUT_EXECUTABLES)/minigzip \
861	  $(HOST_OUT_EXECUTABLES)/mkbootfs \
862	  $(HOST_OUT_EXECUTABLES)/mkbootimg \
863	  $(HOST_OUT_EXECUTABLES)/fs_config \
864	  $(HOST_OUT_EXECUTABLES)/mkyaffs2image \
865	  $(HOST_OUT_EXECUTABLES)/zipalign \
866	  $(HOST_OUT_EXECUTABLES)/aapt \
867	  $(HOST_OUT_EXECUTABLES)/bsdiff \
868	  $(HOST_OUT_EXECUTABLES)/imgdiff \
869	  $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar \
870	  $(HOST_OUT_JAVA_LIBRARIES)/signapk.jar \
871	  $(HOST_OUT_EXECUTABLES)/mkuserimg.sh \
872	  $(HOST_OUT_EXECUTABLES)/make_ext4fs
873
874.PHONY: otatools
875otatools: $(OTATOOLS)
876
877# -----------------------------------------------------------------
878# A zip of the directories that map to the target filesystem.
879# This zip can be used to create an OTA package or filesystem image
880# as a post-build step.
881#
882name := $(TARGET_PRODUCT)
883ifeq ($(TARGET_BUILD_TYPE),debug)
884  name := $(name)_debug
885endif
886name := $(name)-target_files-$(FILE_NAME_TAG)
887
888intermediates := $(call intermediates-dir-for,PACKAGING,target_files)
889BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip
890$(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates)
891$(BUILT_TARGET_FILES_PACKAGE): \
892		zip_root := $(intermediates)/$(name)
893
894# $(1): Directory to copy
895# $(2): Location to copy it to
896# The "ls -A" is to prevent "acp s/* d" from failing if s is empty.
897define package_files-copy-root
898  if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \
899    mkdir -p $(2) && \
900    $(ACP) -rd $(strip $(1))/* $(2); \
901  fi
902endef
903
904built_ota_tools := \
905	$(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \
906	$(call intermediates-dir-for,EXECUTABLES,applypatch_static)/applypatch_static \
907	$(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq \
908	$(call intermediates-dir-for,EXECUTABLES,updater)/updater
909$(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools)
910
911$(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_API_VERSION := $(RECOVERY_API_VERSION)
912
913ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
914# default to common dir for device vendor
915$(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_DEVICE_DIR)/../common
916else
917$(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
918endif
919
920# Depending on the various images guarantees that the underlying
921# directories are up-to-date.
922$(BUILT_TARGET_FILES_PACKAGE): \
923		$(INSTALLED_BOOTIMAGE_TARGET) \
924		$(INSTALLED_RADIOIMAGE_TARGET) \
925		$(INSTALLED_RECOVERYIMAGE_TARGET) \
926		$(INSTALLED_SYSTEMIMAGE) \
927		$(INSTALLED_USERDATAIMAGE_TARGET) \
928		$(INSTALLED_ANDROID_INFO_TXT_TARGET) \
929		$(built_ota_tools) \
930		$(APKCERTS_FILE) \
931		$(HOST_OUT_EXECUTABLES)/fs_config \
932		| $(ACP)
933	@echo "Package target files: $@"
934	$(hide) rm -rf $@ $(zip_root)
935	$(hide) mkdir -p $(dir $@) $(zip_root)
936	@# Components of the recovery image
937	$(hide) mkdir -p $(zip_root)/RECOVERY
938	$(hide) $(call package_files-copy-root, \
939		$(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/RECOVERY/RAMDISK)
940ifdef INSTALLED_KERNEL_TARGET
941	$(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/RECOVERY/kernel
942endif
943ifdef INSTALLED_2NDBOOTLOADER_TARGET
944	$(hide) $(ACP) \
945		$(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/RECOVERY/second
946endif
947ifdef BOARD_KERNEL_CMDLINE
948	$(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/RECOVERY/cmdline
949endif
950ifdef BOARD_KERNEL_BASE
951	$(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/RECOVERY/base
952endif
953ifdef BOARD_KERNEL_PAGESIZE
954	$(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/RECOVERY/pagesize
955endif
956	@# Components of the boot image
957	$(hide) mkdir -p $(zip_root)/BOOT
958	$(hide) $(call package_files-copy-root, \
959		$(TARGET_ROOT_OUT),$(zip_root)/BOOT/RAMDISK)
960ifdef INSTALLED_KERNEL_TARGET
961	$(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/kernel
962endif
963ifdef INSTALLED_2NDBOOTLOADER_TARGET
964	$(hide) $(ACP) \
965		$(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second
966endif
967ifdef BOARD_KERNEL_CMDLINE
968	$(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline
969endif
970ifdef BOARD_KERNEL_BASE
971	$(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base
972endif
973ifdef BOARD_KERNEL_PAGESIZE
974	$(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize
975endif
976	$(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\
977	            mkdir -p $(zip_root)/RADIO; \
978	            $(ACP) $(t) $(zip_root)/RADIO/$(notdir $(t));)
979	@# Contents of the system image
980	$(hide) $(call package_files-copy-root, \
981		$(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM)
982	@# Contents of the data image
983	$(hide) $(call package_files-copy-root, \
984		$(TARGET_OUT_DATA),$(zip_root)/DATA)
985	@# Extra contents of the OTA package
986	$(hide) mkdir -p $(zip_root)/OTA/bin
987	$(hide) $(ACP) $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/
988	$(hide) $(ACP) $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/
989	@# Files that do not end up in any images, but are necessary to
990	@# build them.
991	$(hide) mkdir -p $(zip_root)/META
992	$(hide) $(ACP) $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt
993	$(hide)	echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt
994	$(hide) echo "recovery_api_version=$(PRIVATE_RECOVERY_API_VERSION)" > $(zip_root)/META/misc_info.txt
995ifdef BOARD_FLASH_BLOCK_SIZE
996	$(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $(zip_root)/META/misc_info.txt
997endif
998ifdef BOARD_BOOTIMAGE_PARTITION_SIZE
999	$(hide) echo "boot_size=$(BOARD_BOOTIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
1000endif
1001ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE
1002	$(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
1003endif
1004ifdef BOARD_SYSTEMIMAGE_PARTITION_SIZE
1005	$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
1006endif
1007ifdef BOARD_USERDATAIMAGE_PARTITION_SIZE
1008	$(hide) echo "userdata_size=$(BOARD_USERDATAIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
1009endif
1010	$(hide) echo "tool_extensions=$(tool_extensions)" >> $(zip_root)/META/misc_info.txt
1011ifdef mkyaffs2_extra_flags
1012	$(hide) echo "mkyaffs2_extra_flags=$(mkyaffs2_extra_flags)" >> $(zip_root)/META/misc_info.txt
1013endif
1014	@# Zip everything up, preserving symlinks
1015	$(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
1016	@# Run fs_config on all the system files in the zip, and save the output
1017	$(hide) zipinfo -1 $@ | awk -F/ 'BEGIN { OFS="/" } /^SYSTEM\// {$$1 = "system"; print}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/filesystem_config.txt
1018	$(hide) (cd $(zip_root) && zip -q ../$(notdir $@) META/filesystem_config.txt)
1019
1020
1021target-files-package: $(BUILT_TARGET_FILES_PACKAGE)
1022
1023
1024ifneq ($(TARGET_SIMULATOR),true)
1025ifneq ($(TARGET_PRODUCT),sdk)
1026ifneq ($(TARGET_DEVICE),generic)
1027ifneq ($(TARGET_NO_KERNEL),true)
1028
1029# -----------------------------------------------------------------
1030# OTA update package
1031
1032name := $(TARGET_PRODUCT)
1033ifeq ($(TARGET_BUILD_TYPE),debug)
1034  name := $(name)_debug
1035endif
1036name := $(name)-ota-$(FILE_NAME_TAG)
1037
1038INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1039
1040$(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
1041
1042$(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTATOOLS)
1043	@echo "Package OTA: $@"
1044	$(hide) ./build/tools/releasetools/ota_from_target_files -v \
1045	   -p $(HOST_OUT) \
1046           -k $(KEY_CERT_PAIR) \
1047           $(BUILT_TARGET_FILES_PACKAGE) $@
1048
1049.PHONY: otapackage
1050otapackage: $(INTERNAL_OTA_PACKAGE_TARGET)
1051
1052# -----------------------------------------------------------------
1053# The update package
1054
1055name := $(TARGET_PRODUCT)
1056ifeq ($(TARGET_BUILD_TYPE),debug)
1057  name := $(name)_debug
1058endif
1059name := $(name)-img-$(FILE_NAME_TAG)
1060
1061INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1062
1063ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
1064# default to common dir for device vendor
1065$(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_DEVICE_DIR)/../common
1066else
1067$(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
1068endif
1069
1070$(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTATOOLS)
1071	@echo "Package: $@"
1072	$(hide) ./build/tools/releasetools/img_from_target_files -v \
1073	   -s $(extensions) \
1074	   -p $(HOST_OUT) \
1075	   $(BUILT_TARGET_FILES_PACKAGE) $@
1076
1077.PHONY: updatepackage
1078updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET)
1079
1080endif    # TARGET_NO_KERNEL != true
1081endif    # TARGET_DEVICE != generic
1082endif    # TARGET_PRODUCT != sdk
1083endif    # TARGET_SIMULATOR != true
1084
1085# -----------------------------------------------------------------
1086# installed file list
1087# Depending on $(INSTALLED_SYSTEMIMAGE) ensures that it
1088# gets the DexOpt one if we're doing that.
1089INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt
1090$(INSTALLED_FILES_FILE): $(INSTALLED_SYSTEMIMAGE)
1091	@echo Installed file list: $@
1092	@mkdir -p $(dir $@)
1093	@rm -f $@
1094	$(hide) build/tools/fileslist.py $(TARGET_OUT) $(TARGET_OUT_DATA) > $@
1095
1096.PHONY: installed-file-list
1097installed-file-list: $(INSTALLED_FILES_FILE)
1098$(call dist-for-goals, sdk, $(INSTALLED_FILES_FILE))
1099$(call dist-for-goals, sdk_addon, $(INSTALLED_FILES_FILE))
1100
1101# -----------------------------------------------------------------
1102# A zip of the tests that are built when running "make tests".
1103# This is very similar to BUILT_TARGET_FILES_PACKAGE, but we
1104# only grab SYSTEM and DATA, and it's called "*-tests-*.zip".
1105#
1106name := $(TARGET_PRODUCT)
1107ifeq ($(TARGET_BUILD_TYPE),debug)
1108  name := $(name)_debug
1109endif
1110name := $(name)-tests-$(FILE_NAME_TAG)
1111
1112intermediates := $(call intermediates-dir-for,PACKAGING,tests_zip)
1113BUILT_TESTS_ZIP_PACKAGE := $(intermediates)/$(name).zip
1114$(BUILT_TESTS_ZIP_PACKAGE): intermediates := $(intermediates)
1115$(BUILT_TESTS_ZIP_PACKAGE): zip_root := $(intermediates)/$(name)
1116
1117# Depending on the images guarantees that the underlying
1118# directories are up-to-date.
1119$(BUILT_TESTS_ZIP_PACKAGE): \
1120		$(BUILT_SYSTEMIMAGE) \
1121		$(INSTALLED_USERDATAIMAGE_TARGET) \
1122		| $(ACP)
1123	@echo "Package test files: $@"
1124	$(hide) rm -rf $@ $(zip_root)
1125	$(hide) mkdir -p $(dir $@) $(zip_root)
1126	@# Some parts of the system image
1127	$(hide) $(call package_files-copy-root, \
1128		$(SYSTEMIMAGE_SOURCE_DIR)/xbin,$(zip_root)/SYSTEM/xbin)
1129	$(hide) $(call package_files-copy-root, \
1130		$(SYSTEMIMAGE_SOURCE_DIR)/lib,$(zip_root)/SYSTEM/lib)
1131	$(hide) $(call package_files-copy-root, \
1132		$(SYSTEMIMAGE_SOURCE_DIR)/framework, \
1133		$(zip_root)/SYSTEM/framework)
1134	$(hide) $(ACP) $(SYSTEMIMAGE_SOURCE_DIR)/build.prop $(zip_root)/SYSTEM
1135	@# Contents of the data image
1136	$(hide) $(call package_files-copy-root, \
1137		$(TARGET_OUT_DATA),$(zip_root)/DATA)
1138	$(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
1139
1140.PHONY: tests-zip-package
1141tests-zip-package: $(BUILT_TESTS_ZIP_PACKAGE)
1142
1143# Target needed by tests build
1144.PHONY: tests-build-target
1145tests-build-target: $(BUILT_TESTS_ZIP_PACKAGE) \
1146                    $(BUILT_USERDATAIMAGE_TARGET)
1147
1148ifneq (,$(filter $(MAKECMDGOALS),tests-build-target))
1149  $(call dist-for-goals, tests-build-target, \
1150          $(BUILT_TESTS_ZIP_PACKAGE) \
1151          $(BUILT_USERDATAIMAGE_TARGET))
1152endif
1153
1154# -----------------------------------------------------------------
1155# A zip of the symbols directory.  Keep the full paths to make it
1156# more obvious where these files came from.
1157#
1158name := $(TARGET_PRODUCT)
1159ifeq ($(TARGET_BUILD_TYPE),debug)
1160  name := $(name)_debug
1161endif
1162name := $(name)-symbols-$(FILE_NAME_TAG)
1163
1164SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip
1165$(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE) $(INSTALLED_BOOTIMAGE_TARGET)
1166	@echo "Package symbols: $@"
1167	$(hide) rm -rf $@
1168	$(hide) mkdir -p $(dir $@)
1169	$(hide) zip -qr $@ $(TARGET_OUT_UNSTRIPPED)
1170
1171# -----------------------------------------------------------------
1172# A zip of the Android Apps. Not keeping full path so that we don't
1173# include product names when distributing
1174#
1175name := $(TARGET_PRODUCT)
1176ifeq ($(TARGET_BUILD_TYPE),debug)
1177  name := $(name)_debug
1178endif
1179name := $(name)-apps-$(FILE_NAME_TAG)
1180
1181APPS_ZIP := $(PRODUCT_OUT)/$(name).zip
1182$(APPS_ZIP): $(INSTALLED_SYSTEMIMAGE)
1183	@echo "Package apps: $@"
1184	$(hide) rm -rf $@
1185	$(hide) mkdir -p $(dir $@)
1186	$(hide) zip -qj $@ $(TARGET_OUT_APPS)/*
1187
1188
1189#------------------------------------------------------------------
1190# A zip of emma code coverage meta files. Generated for fully emma
1191# instrumented build.
1192#
1193EMMA_META_ZIP := $(PRODUCT_OUT)/emma_meta.zip
1194$(EMMA_META_ZIP): $(INSTALLED_SYSTEMIMAGE)
1195	@echo "Collecting Emma coverage meta files."
1196	$(hide) find $(TARGET_COMMON_OUT_ROOT) -name "coverage.em" | \
1197		zip -@ -q $@
1198
1199endif	# TARGET_SIMULATOR != true
1200
1201# -----------------------------------------------------------------
1202# dalvik something
1203.PHONY: dalvikfiles
1204dalvikfiles: $(INTERNAL_DALVIK_MODULES)
1205
1206# -----------------------------------------------------------------
1207# The emulator package
1208
1209ifneq ($(TARGET_SIMULATOR),true)
1210
1211INTERNAL_EMULATOR_PACKAGE_FILES += \
1212        $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \
1213        prebuilt/android-arm/kernel/kernel-qemu \
1214        $(INSTALLED_RAMDISK_TARGET) \
1215		$(INSTALLED_SYSTEMIMAGE) \
1216		$(INSTALLED_USERDATAIMAGE_TARGET)
1217
1218name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG)
1219
1220INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
1221
1222$(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES)
1223	@echo "Package: $@"
1224	$(hide) zip -qj $@ $(INTERNAL_EMULATOR_PACKAGE_FILES)
1225
1226endif
1227
1228# -----------------------------------------------------------------
1229# The pdk package (Platform Development Kit)
1230
1231ifneq (,$(filter pdk,$(MAKECMDGOALS)))
1232  include development/pdk/Pdk.mk
1233endif
1234
1235# -----------------------------------------------------------------
1236# The SDK
1237
1238ifneq ($(TARGET_SIMULATOR),true)
1239
1240# The SDK includes host-specific components, so it belongs under HOST_OUT.
1241sdk_dir := $(HOST_OUT)/sdk
1242
1243# Build a name that looks like:
1244#
1245#     linux-x86   --> android-sdk_12345_linux-x86
1246#     darwin-x86  --> android-sdk_12345_mac-x86
1247#     windows-x86 --> android-sdk_12345_windows
1248#
1249sdk_name := android-sdk_$(FILE_NAME_TAG)
1250ifeq ($(HOST_OS),darwin)
1251  INTERNAL_SDK_HOST_OS_NAME := mac
1252else
1253  INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS)
1254endif
1255ifneq ($(HOST_OS),windows)
1256  INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(HOST_ARCH)
1257endif
1258sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME)
1259
1260sdk_dep_file := $(sdk_dir)/sdk_deps.mk
1261
1262ATREE_FILES :=
1263-include $(sdk_dep_file)
1264
1265# if we don't have a real list, then use "everything"
1266ifeq ($(strip $(ATREE_FILES)),)
1267ATREE_FILES := \
1268	$(ALL_PREBUILT) \
1269	$(ALL_COPIED_HEADERS) \
1270	$(ALL_GENERATED_SOURCES) \
1271	$(ALL_DEFAULT_INSTALLED_MODULES) \
1272	$(INSTALLED_RAMDISK_TARGET) \
1273	$(ALL_DOCS) \
1274	$(ALL_SDK_FILES)
1275endif
1276
1277atree_dir := development/build
1278
1279sdk_atree_files := \
1280	$(atree_dir)/sdk.exclude.atree \
1281	$(atree_dir)/sdk.atree \
1282	$(atree_dir)/sdk-$(HOST_OS)-$(HOST_ARCH).atree \
1283	sdk/build/tools.atree
1284
1285deps := \
1286	$(target_notice_file_txt) \
1287	$(tools_notice_file_txt) \
1288	$(OUT_DOCS)/offline-sdk-timestamp \
1289	$(SYMBOLS_ZIP) \
1290	$(INSTALLED_SYSTEMIMAGE) \
1291	$(INSTALLED_USERDATAIMAGE_TARGET) \
1292	$(INSTALLED_RAMDISK_TARGET) \
1293	$(INSTALLED_SDK_BUILD_PROP_TARGET) \
1294	$(INSTALLED_BUILD_PROP_TARGET) \
1295	$(ATREE_FILES) \
1296	$(atree_dir)/sdk.atree \
1297	sdk/build/tools.atree \
1298	$(HOST_OUT_EXECUTABLES)/atree \
1299    $(HOST_OUT_EXECUTABLES)/line_endings
1300
1301INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip
1302$(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name)
1303$(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name)
1304$(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file)
1305$(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files)
1306
1307# Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built.
1308#
1309#SDK_GNU_ERROR := true
1310
1311$(INTERNAL_SDK_TARGET): $(deps)
1312	@echo "Package SDK: $@"
1313	$(hide) rm -rf $(PRIVATE_DIR) $@
1314	$(hide) for f in $(target_gnu_MODULES); do \
1315	  if [ -f $$f ]; then \
1316	    echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \
1317	        including GNU target $$f >&2; \
1318	    FAIL=$(SDK_GNU_ERROR); \
1319	  fi; \
1320	done; \
1321	if [ $$FAIL ]; then exit 1; fi
1322	$(hide) ( \
1323		$(HOST_OUT_EXECUTABLES)/atree \
1324		$(addprefix -f ,$(PRIVATE_INPUT_FILES)) \
1325			-m $(PRIVATE_DEP_FILE) \
1326			-I . \
1327			-I $(PRODUCT_OUT) \
1328			-I $(HOST_OUT) \
1329			-I $(TARGET_COMMON_OUT_ROOT) \
1330			-v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \
1331			-o $(PRIVATE_DIR) && \
1332		cp -f $(target_notice_file_txt) \
1333				$(PRIVATE_DIR)/platforms/android-$(PLATFORM_VERSION)/images/NOTICE.txt && \
1334		cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/tools/NOTICE.txt && \
1335		HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \
1336                development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \
1337		chmod -R ug+rwX $(PRIVATE_DIR) && \
1338		cd $(dir $@) && zip -rq $(notdir $@) $(PRIVATE_NAME) \
1339	) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 )
1340
1341
1342# Is a Windows SDK requested? If so, we need some definitions from here
1343# in order to find the Linux SDK used to create the Windows one.
1344ifneq ($(filter win_sdk,$(MAKECMDGOALS)),)
1345LINUX_SDK_NAME := $(sdk_name)
1346LINUX_SDK_DIR  := $(sdk_dir)
1347include $(TOPDIR)development/build/tools/windows_sdk.mk
1348endif
1349
1350endif # !simulator
1351
1352# -----------------------------------------------------------------
1353# Findbugs
1354INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml
1355INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html
1356$(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES)
1357	@echo UnionBugs: $@
1358	$(hide) prebuilt/common/findbugs/bin/unionBugs $(ALL_FINDBUGS_FILES) \
1359	> $@
1360$(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET)
1361	@echo ConvertXmlToText: $@
1362	$(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl \
1363	$(INTERNAL_FINDBUGS_XML_TARGET)	> $@
1364
1365# -----------------------------------------------------------------
1366# Findbugs
1367
1368# -----------------------------------------------------------------
1369# These are some additional build tasks that need to be run.
1370include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk))
1371