definitions.mk revision 31df068b38729c5bc04a859b9216f539bc22c29e
1#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17##
18## Common build system definitions.  Mostly standard
19## commands for building various types of targets, which
20## are used by others to construct the final targets.
21##
22
23# These are variables we use to collect overall lists
24# of things being processed.
25
26# Full paths to all of the documentation
27ALL_DOCS:=
28
29# The short names of all of the targets in the system.
30# For each element of ALL_MODULES, two other variables
31# are defined:
32#   $(ALL_MODULES.$(target)).BUILT
33#   $(ALL_MODULES.$(target)).INSTALLED
34# The BUILT variable contains LOCAL_BUILT_MODULE for that
35# target, and the INSTALLED variable contains the LOCAL_INSTALLED_MODULE.
36# Some targets may have multiple files listed in the BUILT and INSTALLED
37# sub-variables.
38ALL_MODULES:=
39
40# Full paths to targets that should be added to the "make droid"
41# set of installed targets.
42ALL_DEFAULT_INSTALLED_MODULES:=
43
44# The list of tags that have been defined by
45# LOCAL_MODULE_TAGS.  Each word in this variable maps
46# to a corresponding ALL_MODULE_TAGS.<tagname> variable
47# that contains all of the INSTALLED_MODULEs with that tag.
48ALL_MODULE_TAGS:=
49
50# Similar to ALL_MODULE_TAGS, but contains the short names
51# of all targets for a particular tag.  The top-level variable
52# won't have the list of tags;  ust ALL_MODULE_TAGS to get
53# the list of all known tags.  (This means that this variable
54# will always be empty; it's just here as a placeholder for
55# its sub-variables.)
56ALL_MODULE_NAME_TAGS:=
57
58# Full paths to all prebuilt files that will be copied
59# (used to make the dependency on acp)
60ALL_PREBUILT:=
61
62# Full path to all files that are made by some tool
63ALL_GENERATED_SOURCES:=
64
65# Full path to all asm, C, C++, lex and yacc generated C files.
66# These all have an order-only dependency on the copied headers
67ALL_C_CPP_ETC_OBJECTS:=
68
69# The list of dynamic binaries that haven't been stripped/compressed/etc.
70ALL_ORIGINAL_DYNAMIC_BINARIES:=
71
72# These files go into the SDK
73ALL_SDK_FILES:=
74
75# Files for dalvik.  This is often build without building the rest of the OS.
76INTERNAL_DALVIK_MODULES:=
77
78# All findbugs xml files
79ALL_FINDBUGS_FILES:=
80
81# GPL module license files
82ALL_GPL_MODULE_LICENSE_FILES:=
83
84# Generated class file names for Android resource.
85# They are escaped and quoted so can be passed safely to a bash command.
86ANDROID_RESOURCE_GENERATED_CLASSES := 'R.class' 'R$$*.class' 'Manifest.class' 'Manifest$$*.class'
87
88###########################################################
89## Debugging; prints a variable list to stdout
90###########################################################
91
92# $(1): variable name list, not variable values
93define print-vars
94$(foreach var,$(1), \
95  $(info $(var):) \
96  $(foreach word,$($(var)), \
97    $(info $(space)$(space)$(word)) \
98   ) \
99 )
100endef
101
102###########################################################
103## Evaluates to true if the string contains the word true,
104## and empty otherwise
105## $(1): a var to test
106###########################################################
107
108define true-or-empty
109$(filter true, $(1))
110endef
111
112
113###########################################################
114## Retrieve the directory of the current makefile
115###########################################################
116
117# Figure out where we are.
118define my-dir
119$(strip \
120  $(eval LOCAL_MODULE_MAKEFILE := $$(lastword $$(MAKEFILE_LIST))) \
121  $(if $(filter $(CLEAR_VARS),$(LOCAL_MODULE_MAKEFILE)), \
122    $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
123   , \
124    $(patsubst %/,%,$(dir $(LOCAL_MODULE_MAKEFILE))) \
125   ) \
126 )
127endef
128
129###########################################################
130## Retrieve a list of all makefiles immediately below some directory
131###########################################################
132
133define all-makefiles-under
134$(wildcard $(1)/*/Android.mk)
135endef
136
137###########################################################
138## Look under a directory for makefiles that don't have parent
139## makefiles.
140###########################################################
141
142# $(1): directory to search under
143# Ignores $(1)/Android.mk
144define first-makefiles-under
145$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
146        --mindepth=2 $(1) Android.mk)
147endef
148
149###########################################################
150## Retrieve a list of all makefiles immediately below your directory
151###########################################################
152
153define all-subdir-makefiles
154$(call all-makefiles-under,$(call my-dir))
155endef
156
157###########################################################
158## Look in the named list of directories for makefiles,
159## relative to the current directory.
160###########################################################
161
162# $(1): List of directories to look for under this directory
163define all-named-subdir-makefiles
164$(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1))))
165endef
166
167###########################################################
168## Find all of the java files under the named directories.
169## Meant to be used like:
170##    SRC_FILES := $(call all-java-files-under,src tests)
171###########################################################
172
173define all-java-files-under
174$(patsubst ./%,%, \
175  $(shell cd $(LOCAL_PATH) ; \
176          find -L $(1) -name "*.java" -and -not -name ".*") \
177 )
178endef
179
180###########################################################
181## Find all of the java files from here.  Meant to be used like:
182##    SRC_FILES := $(call all-subdir-java-files)
183###########################################################
184
185define all-subdir-java-files
186$(call all-java-files-under,.)
187endef
188
189###########################################################
190## Find all of the c files under the named directories.
191## Meant to be used like:
192##    SRC_FILES := $(call all-c-files-under,src tests)
193###########################################################
194
195define all-c-files-under
196$(patsubst ./%,%, \
197  $(shell cd $(LOCAL_PATH) ; \
198          find -L $(1) -name "*.c" -and -not -name ".*") \
199 )
200endef
201
202###########################################################
203## Find all of the c files from here.  Meant to be used like:
204##    SRC_FILES := $(call all-subdir-c-files)
205###########################################################
206
207define all-subdir-c-files
208$(call all-c-files-under,.)
209endef
210
211###########################################################
212## Find all files named "I*.aidl" under the named directories,
213## which must be relative to $(LOCAL_PATH).  The returned list
214## is relative to $(LOCAL_PATH).
215###########################################################
216
217define all-Iaidl-files-under
218$(patsubst ./%,%, \
219  $(shell cd $(LOCAL_PATH) ; \
220          find -L $(1) -name "I*.aidl" -and -not -name ".*") \
221 )
222endef
223
224###########################################################
225## Find all of the "I*.aidl" files under $(LOCAL_PATH).
226###########################################################
227
228define all-subdir-Iaidl-files
229$(call all-Iaidl-files-under,.)
230endef
231
232###########################################################
233## Find all of the logtags files under the named directories.
234## Meant to be used like:
235##    SRC_FILES := $(call all-logtags-files-under,src)
236###########################################################
237
238define all-logtags-files-under
239$(patsubst ./%,%, \
240  $(shell cd $(LOCAL_PATH) ; \
241          find -L $(1) -name "*.logtags" -and -not -name ".*") \
242  )
243endef
244
245###########################################################
246## Find all of the .proto files under the named directories.
247## Meant to be used like:
248##    SRC_FILES := $(call all-proto-files-under,src)
249###########################################################
250
251define all-proto-files-under
252$(patsubst ./%,%, \
253  $(shell cd $(LOCAL_PATH) ; \
254          find -L $(1) -name "*.proto" -and -not -name ".*") \
255  )
256endef
257
258###########################################################
259## Find all of the RenderScript files under the named directories.
260##  Meant to be used like:
261##    SRC_FILES := $(call all-renderscript-files-under,src)
262###########################################################
263
264define all-renderscript-files-under
265$(patsubst ./%,%, \
266  $(shell cd $(LOCAL_PATH) ; \
267          find -L $(1) \( -name "*.rs" -or -name "*.fs" \) -and -not -name ".*") \
268  )
269endef
270
271###########################################################
272## Find all of the html files under the named directories.
273## Meant to be used like:
274##    SRC_FILES := $(call all-html-files-under,src tests)
275###########################################################
276
277define all-html-files-under
278$(patsubst ./%,%, \
279  $(shell cd $(LOCAL_PATH) ; \
280          find -L $(1) -name "*.html" -and -not -name ".*") \
281 )
282endef
283
284###########################################################
285## Find all of the html files from here.  Meant to be used like:
286##    SRC_FILES := $(call all-subdir-html-files)
287###########################################################
288
289define all-subdir-html-files
290$(call all-html-files-under,.)
291endef
292
293###########################################################
294## Find all of the files matching pattern
295##    SRC_FILES := $(call find-subdir-files, <pattern>)
296###########################################################
297
298define find-subdir-files
299$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find -L $(1)))
300endef
301
302###########################################################
303# find the files in the subdirectory $1 of LOCAL_DIR
304# matching pattern $2, filtering out files $3
305# e.g.
306#     SRC_FILES += $(call find-subdir-subdir-files, \
307#                         css, *.cpp, DontWantThis.cpp)
308###########################################################
309
310define find-subdir-subdir-files
311$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
312            $(LOCAL_PATH) ; find -L $(1) -maxdepth 1 -name $(2))))
313endef
314
315###########################################################
316## Find all of the files matching pattern
317##    SRC_FILES := $(call all-subdir-java-files)
318###########################################################
319
320define find-subdir-assets
321$(if $(1),$(patsubst ./%,%, \
322	$(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -not -name '.*' -and -type f -and -not -type l ; fi)), \
323	$(warning Empty argument supplied to find-subdir-assets) \
324)
325endef
326
327###########################################################
328## Find various file types in a list of directories relative to $(LOCAL_PATH)
329###########################################################
330
331define find-other-java-files
332	$(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
333endef
334
335define find-other-html-files
336	$(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
337endef
338
339###########################################################
340## Scan through each directory of $(1) looking for files
341## that match $(2) using $(wildcard).  Useful for seeing if
342## a given directory or one of its parents contains
343## a particular file.  Returns the first match found,
344## starting furthest from the root.
345###########################################################
346
347define find-parent-file
348$(strip \
349  $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
350  $(if $(_fpf),$(_fpf), \
351       $(if $(filter-out ./ .,$(1)), \
352             $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
353        ) \
354   ) \
355)
356endef
357
358###########################################################
359## Function we can evaluate to introduce a dynamic dependency
360###########################################################
361
362define add-dependency
363$(1): $(2)
364endef
365
366###########################################################
367## Set up the dependencies for a prebuilt target
368##  $(call add-prebuilt-file, srcfile, [targetclass])
369###########################################################
370
371define add-prebuilt-file
372    $(eval $(include-prebuilt))
373endef
374
375define include-prebuilt
376    include $$(CLEAR_VARS)
377    LOCAL_SRC_FILES := $(1)
378    LOCAL_BUILT_MODULE_STEM := $(1)
379    LOCAL_MODULE_SUFFIX := $$(suffix $(1))
380    LOCAL_MODULE := $$(basename $(1))
381    LOCAL_MODULE_CLASS := $(2)
382    include $$(BUILD_PREBUILT)
383endef
384
385###########################################################
386## do multiple prebuilts
387##  $(call target class, files ...)
388###########################################################
389
390define add-prebuilt-files
391    $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
392endef
393
394
395
396###########################################################
397## The intermediates directory.  Where object files go for
398## a given target.  We could technically get away without
399## the "_intermediates" suffix on the directory, but it's
400## nice to be able to grep for that string to find out if
401## anyone's abusing the system.
402###########################################################
403
404# $(1): target class, like "APPS"
405# $(2): target name, like "NotePad"
406# $(3): if non-empty, this is a HOST target.
407# $(4): if non-empty, force the intermediates to be COMMON
408define intermediates-dir-for
409$(strip \
410    $(eval _idfClass := $(strip $(1))) \
411    $(if $(_idfClass),, \
412        $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
413    $(eval _idfName := $(strip $(2))) \
414    $(if $(_idfName),, \
415        $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
416    $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
417    $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
418        $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
419      , \
420        $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
421     ) \
422    $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
423)
424endef
425
426# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
427# to determine the intermediates directory.
428#
429# $(1): if non-empty, force the intermediates to be COMMON
430define local-intermediates-dir
431$(strip \
432    $(if $(strip $(LOCAL_MODULE_CLASS)),, \
433        $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
434    $(if $(strip $(LOCAL_MODULE)),, \
435        $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
436    $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
437)
438endef
439
440###########################################################
441## Convert "path/to/libXXX.so" to "-lXXX".
442## Any "path/to/libXXX.a" elements pass through unchanged.
443###########################################################
444
445define normalize-libraries
446$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
447$(filter-out %.so,$(1))
448endef
449
450# TODO: change users to call the common version.
451define normalize-host-libraries
452$(call normalize-libraries,$(1))
453endef
454
455define normalize-target-libraries
456$(call normalize-libraries,$(1))
457endef
458
459###########################################################
460## Convert a list of short module names (e.g., "framework", "Browser")
461## into the list of files that are built for those modules.
462## NOTE: this won't return reliable results until after all
463## sub-makefiles have been included.
464## $(1): target list
465###########################################################
466
467define module-built-files
468$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
469endef
470
471###########################################################
472## Convert a list of short modules names (e.g., "framework", "Browser")
473## into the list of files that are installed for those modules.
474## NOTE: this won't return reliable results until after all
475## sub-makefiles have been included.
476## $(1): target list
477###########################################################
478
479define module-installed-files
480$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
481endef
482
483###########################################################
484## Convert a list of short modules names (e.g., "framework", "Browser")
485## into the list of files that should be used when linking
486## against that module as a public API.
487## TODO: Allow this for more than JAVA_LIBRARIES modules
488## NOTE: this won't return reliable results until after all
489## sub-makefiles have been included.
490## $(1): target list
491###########################################################
492
493define module-stubs-files
494$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
495endef
496
497###########################################################
498## Evaluates to the timestamp file for a doc module, which
499## is the dependency that should be used.
500## $(1): doc module
501###########################################################
502
503define doc-timestamp-for
504$(OUT_DOCS)/$(strip $(1))-timestamp
505endef
506
507
508###########################################################
509## Convert "core ext framework" to "out/.../javalib.jar ..."
510## $(1): library list
511## $(2): Non-empty if IS_HOST_MODULE
512###########################################################
513
514# $(1): library name
515# $(2): Non-empty if IS_HOST_MODULE
516define _java-lib-dir
517$(call intermediates-dir-for, \
518	JAVA_LIBRARIES,$(1),$(2),COMMON)
519endef
520
521# $(1): library name
522# $(2): Non-empty if IS_HOST_MODULE
523define _java-lib-full-classes.jar
524$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
525endef
526
527# $(1): library name list
528# $(2): Non-empty if IS_HOST_MODULE
529define java-lib-files
530$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
531endef
532
533# $(1): library name
534# $(2): Non-empty if IS_HOST_MODULE
535define _java-lib-full-dep
536$(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX)
537endef
538
539# $(1): library name list
540# $(2): Non-empty if IS_HOST_MODULE
541define java-lib-deps
542$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
543endef
544
545###########################################################
546## Run rot13 on a string
547## $(1): the string.  Must be one line.
548###########################################################
549define rot13
550$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
551endef
552
553
554###########################################################
555## Returns true if $(1) and $(2) are equal.  Returns
556## the empty string if they are not equal.
557###########################################################
558define streq
559$(strip $(if $(strip $(1)),\
560  $(if $(strip $(2)),\
561    $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
562    ),\
563  $(if $(strip $(2)),\
564    ,\
565    true)\
566 ))
567endef
568
569###########################################################
570## Convert "a b c" into "a:b:c"
571###########################################################
572define normalize-path-list
573$(subst $(space),:,$(strip $(1)))
574endef
575
576###########################################################
577## Read the word out of a colon-separated list of words.
578## This has the same behavior as the built-in function
579## $(word n,str).
580##
581## The individual words may not contain spaces.
582##
583## $(1): 1 based index
584## $(2): value of the form a:b:c...
585###########################################################
586
587define word-colon
588$(word $(1),$(subst :,$(space),$(2)))
589endef
590
591###########################################################
592## Convert "a=b c= d e = f" into "a=b c=d e=f"
593##
594## $(1): list to collapse
595## $(2): if set, separator word; usually "=", ":", or ":="
596##       Defaults to "=" if not set.
597###########################################################
598
599define collapse-pairs
600$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
601$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
602    $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
603endef
604
605###########################################################
606## Given a list of pairs, if multiple pairs have the same
607## first components, keep only the first pair.
608##
609## $(1): list of pairs
610## $(2): the separator word, such as ":", "=", etc.
611define uniq-pairs-by-first-component
612$(eval _upbfc_fc_set :=)\
613$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
614    $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
615        $(eval _upbfc_fc_set += $(_first)))))\
616$(eval _upbfc_fc_set :=)\
617$(eval _first:=)
618endef
619
620###########################################################
621## MODULE_TAG set operations
622###########################################################
623
624# Given a list of tags, return the targets that specify
625# any of those tags.
626# $(1): tag list
627define modules-for-tag-list
628$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
629endef
630
631# Same as modules-for-tag-list, but operates on
632# ALL_MODULE_NAME_TAGS.
633# $(1): tag list
634define module-names-for-tag-list
635$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
636endef
637
638# Given an accept and reject list, find the matching
639# set of targets.  If a target has multiple tags and
640# any of them are rejected, the target is rejected.
641# Reject overrides accept.
642# $(1): list of tags to accept
643# $(2): list of tags to reject
644#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
645#TODO(jbq): as of 20100106 nobody uses the second parameter
646define get-tagged-modules
647$(filter-out \
648	$(call modules-for-tag-list,$(2)), \
649	    $(call modules-for-tag-list,$(1)))
650endef
651
652###########################################################
653## Append a leaf to a base path.  Properly deals with
654## base paths ending in /.
655##
656## $(1): base path
657## $(2): leaf path
658###########################################################
659
660define append-path
661$(subst //,/,$(1)/$(2))
662endef
663
664
665###########################################################
666## Package filtering
667###########################################################
668
669# Given a list of installed modules (short or long names)
670# return a list of the packages (yes, .apk packages, not
671# modules in general) that are overridden by this list and,
672# therefore, should not be installed.
673# $(1): mixed list of installed modules
674# TODO: This is fragile; find a reliable way to get this information.
675define _get-package-overrides
676 $(eval ### Discard any words containing slashes, unless they end in .apk, \
677        ### in which case trim off the directory component and the suffix. \
678        ### If there are no slashes, keep the entire word.)
679 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
680 $(eval _gpo_names := \
681     $(filter %.apk,$(_gpo_names)) \
682     $(filter-out %@@@ @@@%,$(_gpo_names)))
683 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
684 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
685
686 $(eval ### Remove any remaining words that contain dots.)
687 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
688 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
689
690 $(eval ### Now we have a list of any words that could possibly refer to \
691        ### packages, although there may be words that do not.  Only \
692        ### real packages will be present under PACKAGES.*, though.)
693 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
694endef
695
696define get-package-overrides
697$(sort $(strip $(call _get-package-overrides,$(1))))
698endef
699
700###########################################################
701## Output the command lines, or not
702###########################################################
703
704ifeq ($(strip $(SHOW_COMMANDS)),)
705define pretty
706@echo $1
707endef
708hide := @
709else
710define pretty
711endef
712hide :=
713endif
714
715###########################################################
716## Dump the variables that are associated with targets
717###########################################################
718
719define dump-module-variables
720@echo all_dependencies=$^
721@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
722@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
723@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
724@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
725@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
726@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
727@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
728@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
729@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
730@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
731@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
732@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
733@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
734@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
735@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
736@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
737@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
738endef
739
740###########################################################
741## Commands for using sed to replace given variable values
742###########################################################
743
744define transform-variables
745@mkdir -p $(dir $@)
746@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
747$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
748$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
749endef
750
751
752###########################################################
753## Commands for munging the dependency files GCC generates
754###########################################################
755# $(1): the input .d file
756# $(2): the output .P file
757define transform-d-to-p-args
758$(hide) cp $(1) $(2); \
759	sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
760		-e '/^$$/ d' -e 's/$$/ :/' < $(1) >> $(2); \
761	rm -f $(1)
762endef
763
764define transform-d-to-p
765$(call transform-d-to-p-args,$(@:%.o=%.d),$(@:%.o=%.P))
766endef
767
768###########################################################
769## Commands for running lex
770###########################################################
771
772define transform-l-to-cpp
773@mkdir -p $(dir $@)
774@echo "Lex: $(PRIVATE_MODULE) <= $<"
775$(hide) $(LEX) -o$@ $<
776endef
777
778###########################################################
779## Commands for running yacc
780##
781## Because the extension of c++ files can change, the
782## extension must be specified in $1.
783## E.g, "$(call transform-y-to-cpp,.cpp)"
784###########################################################
785
786define transform-y-to-cpp
787@mkdir -p $(dir $@)
788@echo "Yacc: $(PRIVATE_MODULE) <= $<"
789$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
790touch $(@:$1=$(YACC_HEADER_SUFFIX))
791echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
792echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
793cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
794echo '#endif' >> $(@:$1=.h)
795rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
796endef
797
798###########################################################
799## Commands to compile RenderScript to Java
800###########################################################
801
802define transform-renderscripts-to-java-and-bc
803@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
804$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
805$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
806$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
807$(hide) $(PRIVATE_RS_CC) \
808  -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
809  -p $(PRIVATE_RS_OUTPUT_DIR)/src \
810  -d $(PRIVATE_RS_OUTPUT_DIR) \
811  -a $@ -MD \
812  $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
813  $(PRIVATE_RS_FLAGS) \
814  $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
815  $(PRIVATE_RS_SOURCE_FILES)
816#$(hide) $(LLVM_RS_LINK) \
817#  $(PRIVATE_RS_OUTPUT_DIR)/res/raw/*.bc
818$(hide) mkdir -p $(dir $@)
819$(hide) touch $@
820endef
821
822###########################################################
823## Commands to compile RenderScript to C++
824###########################################################
825
826define transform-renderscripts-to-cpp-and-bc
827@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
828$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
829$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/
830$(hide) $(PRIVATE_RS_CC) \
831  -o $(PRIVATE_RS_OUTPUT_DIR)/ \
832  -d $(PRIVATE_RS_OUTPUT_DIR) \
833  -a $@ -MD \
834  -reflect-c++ \
835  $(PRIVATE_RS_FLAGS) \
836  $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
837  $(PRIVATE_RS_SOURCE_FILES)
838$(hide) mkdir -p $(dir $@)
839$(hide) touch $@
840endef
841
842
843###########################################################
844## Commands for running aidl
845###########################################################
846
847define transform-aidl-to-java
848@mkdir -p $(dir $@)
849@echo "Aidl: $(PRIVATE_MODULE) <= $<"
850$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
851endef
852#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
853
854
855###########################################################
856## Commands for running java-event-log-tags.py
857###########################################################
858
859define transform-logtags-to-java
860@mkdir -p $(dir $@)
861@echo "logtags: $@ <= $<"
862$(hide) $(JAVATAGS) -o $@ $^
863endef
864
865
866###########################################################
867## Commands for running protoc to compile .proto into .java
868###########################################################
869
870define transform-proto-to-java
871@mkdir -p $(dir $@)
872@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
873@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
874@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
875$(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \
876        $(PROTOC) \
877        $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
878        $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)=$(PRIVATE_PROTO_JAVA_OUTPUT_DIR) \
879        $(PRIVATE_PROTOC_FLAGS) \
880        $$f || exit 33; \
881        done
882$(hide) touch $@
883endef
884
885######################################################################
886## Commands for running protoc to compile .proto into .pb.cc and .pb.h
887######################################################################
888define transform-proto-to-cc
889@mkdir -p $(dir $@)
890@echo "Protoc: $@ <= $<"
891$(hide) $(PROTOC) \
892	$(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
893	$(PRIVATE_PROTOC_FLAGS) \
894	--cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
895endef
896
897
898###########################################################
899## Commands for running gcc to compile a C++ file
900###########################################################
901
902define transform-cpp-to-o
903@mkdir -p $(dir $@)
904@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
905$(hide) $(PRIVATE_CXX) \
906	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
907	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
908	$(addprefix -isystem ,\
909	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
910	        $(filter-out $(PRIVATE_C_INCLUDES), \
911	            $(PRIVATE_TARGET_PROJECT_INCLUDES) \
912	            $(PRIVATE_TARGET_C_INCLUDES)))) \
913	-c \
914	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
915	    $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
916	    $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
917	    $(PRIVATE_ARM_CFLAGS) \
918	 ) \
919	$(PRIVATE_RTTI_FLAG) \
920	$(PRIVATE_CFLAGS) \
921	$(PRIVATE_CPPFLAGS) \
922	$(PRIVATE_DEBUG_CFLAGS) \
923	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
924$(transform-d-to-p)
925endef
926
927
928###########################################################
929## Commands for running gcc to compile a C file
930###########################################################
931
932# $(1): extra flags
933define transform-c-or-s-to-o-no-deps
934@mkdir -p $(dir $@)
935$(hide) $(PRIVATE_CC) \
936	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
937	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
938	$(addprefix -isystem ,\
939	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
940	        $(filter-out $(PRIVATE_C_INCLUDES), \
941	            $(PRIVATE_TARGET_PROJECT_INCLUDES) \
942	            $(PRIVATE_TARGET_C_INCLUDES)))) \
943	-c \
944	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
945	    $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
946	    $(PRIVATE_ARM_CFLAGS) \
947	 ) \
948	 $(1) \
949	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
950endef
951
952define transform-c-to-o-no-deps
953@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
954$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS))
955endef
956
957define transform-s-to-o-no-deps
958@echo "target asm: $(PRIVATE_MODULE) <= $<"
959$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
960endef
961
962define transform-c-to-o
963$(transform-c-to-o-no-deps)
964$(transform-d-to-p)
965endef
966
967define transform-s-to-o
968$(transform-s-to-o-no-deps)
969$(transform-d-to-p)
970endef
971
972###########################################################
973## Commands for running gcc to compile an Objective-C file
974## This should never happen for target builds but this
975## will error at build time.
976###########################################################
977
978define transform-m-to-o-no-deps
979@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
980$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
981endef
982
983define transform-m-to-o
984$(transform-m-to-o-no-deps)
985$(transform-d-to-p)
986endef
987
988###########################################################
989## Commands for running gcc to compile a host C++ file
990###########################################################
991
992define transform-host-cpp-to-o
993@mkdir -p $(dir $@)
994@echo "host C++: $(PRIVATE_MODULE) <= $<"
995$(hide) $(PRIVATE_CXX) \
996	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
997	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
998	$(addprefix -isystem ,\
999	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1000	        $(filter-out $(PRIVATE_C_INCLUDES), \
1001	            $(HOST_PROJECT_INCLUDES) \
1002	            $(HOST_C_INCLUDES)))) \
1003	-c \
1004	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1005	    $(HOST_GLOBAL_CFLAGS) \
1006	    $(HOST_GLOBAL_CPPFLAGS) \
1007	 ) \
1008	$(PRIVATE_CFLAGS) \
1009	$(PRIVATE_CPPFLAGS) \
1010	$(PRIVATE_DEBUG_CFLAGS) \
1011	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
1012$(transform-d-to-p)
1013endef
1014
1015
1016###########################################################
1017## Commands for running gcc to compile a host C file
1018###########################################################
1019
1020# $(1): extra flags
1021define transform-host-c-or-s-to-o-no-deps
1022@mkdir -p $(dir $@)
1023$(hide) $(PRIVATE_CC) \
1024	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
1025	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
1026	$(addprefix -isystem ,\
1027	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1028	        $(filter-out $(PRIVATE_C_INCLUDES), \
1029	            $(HOST_PROJECT_INCLUDES) \
1030	            $(HOST_C_INCLUDES)))) \
1031	-c \
1032	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1033	    $(HOST_GLOBAL_CFLAGS) \
1034	 ) \
1035	$(1) \
1036	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
1037endef
1038
1039define transform-host-c-to-o-no-deps
1040@echo "host C: $(PRIVATE_MODULE) <= $<"
1041$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS))
1042endef
1043
1044define transform-host-s-to-o-no-deps
1045@echo "host asm: $(PRIVATE_MODULE) <= $<"
1046$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1047endef
1048
1049define transform-host-c-to-o
1050$(transform-host-c-to-o-no-deps)
1051$(transform-d-to-p)
1052endef
1053
1054define transform-host-s-to-o
1055$(transform-host-s-to-o-no-deps)
1056$(transform-d-to-p)
1057endef
1058
1059###########################################################
1060## Commands for running gcc to compile a host Objective-C file
1061###########################################################
1062
1063define transform-host-m-to-o-no-deps
1064@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
1065$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
1066endef
1067
1068define transform-host-m-to-o
1069$(transform-host-m-to-o-no-deps)
1070$(transform-d-to-p)
1071endef
1072
1073###########################################################
1074## Commands for running ar
1075###########################################################
1076
1077define _concat-if-arg2-not-empty
1078$(if $(2),$(hide) $(1) $(2))
1079endef
1080
1081# Split long argument list into smaller groups and call the command repeatedly
1082# Call the command at least once even if there are no arguments, as otherwise
1083# the output file won't be created.
1084#
1085# $(1): the command without arguments
1086# $(2): the arguments
1087define split-long-arguments
1088$(hide) $(1) $(wordlist 1,500,$(2))
1089$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1090$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1091$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1092$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1093$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1094$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1095endef
1096
1097# $(1): the full path of the source static library.
1098define _extract-and-include-single-target-whole-static-lib
1099@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1100$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1101    rm -rf $$ldir; \
1102    mkdir -p $$ldir; \
1103    filelist=; \
1104    for f in `$(TARGET_AR) t $(1)`; do \
1105        $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \
1106        filelist="$$filelist $$ldir/$$f"; \
1107    done ; \
1108    $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1109
1110endef
1111
1112define extract-and-include-target-whole-static-libs
1113$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
1114    $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
1115endef
1116
1117# Explicitly delete the archive first so that ar doesn't
1118# try to add to an existing archive.
1119define transform-o-to-static-lib
1120@mkdir -p $(dir $@)
1121@rm -f $@
1122$(extract-and-include-target-whole-static-libs)
1123@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
1124$(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
1125endef
1126
1127###########################################################
1128## Commands for running host ar
1129###########################################################
1130
1131# $(1): the full path of the source static library.
1132define _extract-and-include-single-host-whole-static-lib
1133@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1134$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1135    rm -rf $$ldir; \
1136    mkdir -p $$ldir; \
1137    filelist=; \
1138    for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
1139        $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1140        filelist="$$filelist $$ldir/$$f"; \
1141    done ; \
1142    $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1143
1144endef
1145
1146define extract-and-include-host-whole-static-libs
1147$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
1148    $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
1149endef
1150
1151# Explicitly delete the archive first so that ar doesn't
1152# try to add to an existing archive.
1153define transform-host-o-to-static-lib
1154@mkdir -p $(dir $@)
1155@rm -f $@
1156$(extract-and-include-host-whole-static-libs)
1157@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
1158$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
1159endef
1160
1161
1162###########################################################
1163## Commands for running gcc to link a shared library or package
1164###########################################################
1165
1166# ld just seems to be so finicky with command order that we allow
1167# it to be overriden en-masse see combo/linux-arm.make for an example.
1168ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1169define transform-host-o-to-shared-lib-inner
1170$(hide) $(PRIVATE_CXX) \
1171	-Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1172	-Wl,-rpath,\$$ORIGIN/../lib \
1173	-shared -Wl,-soname,$(notdir $@) \
1174	$(PRIVATE_LDFLAGS) \
1175	$(HOST_GLOBAL_LD_DIRS) \
1176	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1177	   $(HOST_GLOBAL_LDFLAGS) \
1178	) \
1179	$(PRIVATE_ALL_OBJECTS) \
1180	-Wl,--whole-archive \
1181	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1182	-Wl,--no-whole-archive \
1183	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1184	$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1185	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1186	$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1187	-o $@ \
1188	$(PRIVATE_LDLIBS)
1189endef
1190endif
1191
1192define transform-host-o-to-shared-lib
1193@mkdir -p $(dir $@)
1194@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
1195$(transform-host-o-to-shared-lib-inner)
1196endef
1197
1198define transform-host-o-to-package
1199@mkdir -p $(dir $@)
1200@echo "host Package: $(PRIVATE_MODULE) ($@)"
1201$(transform-host-o-to-shared-lib-inner)
1202endef
1203
1204
1205###########################################################
1206## Commands for running gcc to link a shared library or package
1207###########################################################
1208
1209#echo >$@.vers "{"; \
1210#echo >>$@.vers " global:"; \
1211#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) "  " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1212#echo >>$@.vers " local:"; \
1213#echo >>$@.vers "  *;"; \
1214#echo >>$@.vers "};"; \
1215
1216#	-Wl,--version-script=$@.vers \
1217
1218# ld just seems to be so finicky with command order that we allow
1219# it to be overriden en-masse see combo/linux-arm.make for an example.
1220ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1221define transform-o-to-shared-lib-inner
1222$(hide) $(PRIVATE_CXX) \
1223	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1224	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1225	-Wl,-rpath,\$$ORIGIN/../lib \
1226	-shared -Wl,-soname,$(notdir $@) \
1227	$(PRIVATE_LDFLAGS) \
1228	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
1229	$(PRIVATE_ALL_OBJECTS) \
1230	-Wl,--whole-archive \
1231	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1232	-Wl,--no-whole-archive \
1233	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1234	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1235	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1236	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1237	-o $@ \
1238	$(PRIVATE_LDLIBS)
1239endef
1240endif
1241
1242define transform-o-to-shared-lib
1243@mkdir -p $(dir $@)
1244@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
1245$(transform-o-to-shared-lib-inner)
1246endef
1247
1248define transform-o-to-package
1249@mkdir -p $(dir $@)
1250@echo "target Package: $(PRIVATE_MODULE) ($@)"
1251$(transform-o-to-shared-lib-inner)
1252endef
1253
1254
1255###########################################################
1256## Commands for filtering a target executable or library
1257###########################################################
1258
1259define transform-to-stripped
1260@mkdir -p $(dir $@)
1261@echo "target Strip: $(PRIVATE_MODULE) ($@)"
1262$(hide) $(TARGET_STRIP_COMMAND)
1263endef
1264
1265
1266###########################################################
1267## Commands for running gcc to link an executable
1268###########################################################
1269
1270ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1271define transform-o-to-executable-inner
1272$(hide) $(PRIVATE_CXX) \
1273	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1274	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
1275	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1276	-Wl,-rpath,\$$ORIGIN/../lib \
1277	$(PRIVATE_LDFLAGS) \
1278	$(PRIVATE_ALL_OBJECTS) \
1279	-Wl,--whole-archive \
1280	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1281	-Wl,--no-whole-archive \
1282	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1283	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1284	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1285	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1286	-o $@ \
1287	$(PRIVATE_LDLIBS)
1288endef
1289endif
1290
1291define transform-o-to-executable
1292@mkdir -p $(dir $@)
1293@echo "target Executable: $(PRIVATE_MODULE) ($@)"
1294$(transform-o-to-executable-inner)
1295endef
1296
1297
1298###########################################################
1299## Commands for running gcc to link a statically linked
1300## executable.  In practice, we only use this on arm, so
1301## the other platforms don't have the
1302## transform-o-to-static-executable defined
1303###########################################################
1304
1305ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1306define transform-o-to-static-executable-inner
1307endef
1308endif
1309
1310define transform-o-to-static-executable
1311@mkdir -p $(dir $@)
1312@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
1313$(transform-o-to-static-executable-inner)
1314endef
1315
1316
1317###########################################################
1318## Commands for running gcc to link a host executable
1319###########################################################
1320
1321ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1322define transform-host-o-to-executable-inner
1323$(hide) $(PRIVATE_CXX) \
1324	$(PRIVATE_ALL_OBJECTS) \
1325	-Wl,--whole-archive \
1326	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1327	-Wl,--no-whole-archive \
1328	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1329	$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1330	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1331	$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1332	-Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1333	-Wl,-rpath,\$$ORIGIN/../lib \
1334	$(HOST_GLOBAL_LD_DIRS) \
1335	$(PRIVATE_LDFLAGS) \
1336	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1337		$(HOST_GLOBAL_LDFLAGS) \
1338	) \
1339	-o $@ \
1340	$(PRIVATE_LDLIBS)
1341endef
1342endif
1343
1344define transform-host-o-to-executable
1345@mkdir -p $(dir $@)
1346@echo "host Executable: $(PRIVATE_MODULE) ($@)"
1347$(transform-host-o-to-executable-inner)
1348endef
1349
1350
1351###########################################################
1352## Commands for running javac to make .class files
1353###########################################################
1354
1355#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1356#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1357
1358# TODO: Right now we generate the asset resources twice, first as part
1359# of generating the Java classes, then at the end when packaging the final
1360# assets.  This should be changed to do one of two things: (1) Don't generate
1361# any resource files the first time, only create classes during that stage;
1362# or (2) Don't use the -c flag with the second stage, instead taking the
1363# resource files from the first stage as additional input.  My original intent
1364# was to use approach (2), but this requires a little more work in the tool.
1365# Maybe we should just use approach (1).
1366
1367# This rule creates the R.java and Manifest.java files, both of which
1368# are PRODUCT-neutral.  Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
1369define create-resource-java-files
1370@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1371@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
1372$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
1373    $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
1374    $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1375    $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1376    $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1377    $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1378    $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1379    $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
1380    $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
1381    $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1382    $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1383    $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
1384    $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
1385    $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
1386    $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
1387endef
1388
1389ifeq ($(HOST_OS),windows)
1390xlint_unchecked :=
1391else
1392xlint_unchecked := -Xlint:unchecked
1393endif
1394
1395ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1396incremental_dex := --incremental
1397else
1398incremental_dex :=
1399endif
1400
1401# emit-line, <word list>, <output file>
1402define emit-line
1403   $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1404endef
1405
1406# dump-words-to-file, <word list>, <output file>
1407define dump-words-to-file
1408        @rm -f $(2)
1409        @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1410        @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1411        @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1412        @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1413        @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1414        @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1415        @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1416        @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1417        @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1418        @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1419        @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1420        @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1421        @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1422        @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1423        @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1424        @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1425        @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1426        @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1427        @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1428        @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
1429        @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1430        @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1431        @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1432        @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1433        @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1434        @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
1435endef
1436
1437# For a list of jar files, unzip them to a specified directory,
1438# but make sure that no META-INF files come along for the ride.
1439#
1440# $(1): files to unzip
1441# $(2): destination directory
1442define unzip-jar-files
1443  $(hide) for f in $(1); \
1444  do \
1445    if [ ! -f $$f ]; then \
1446      echo Missing file $$f; \
1447      exit 1; \
1448    fi; \
1449    unzip -qo $$f -d $(2); \
1450  done \
1451  $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,;rm -rf $(2)/META-INF)
1452endef
1453
1454# Common definition to invoke javac on the host and target.
1455#
1456# Some historical notes:
1457# - below we write the list of java files to java-source-list to avoid argument
1458#   list length problems with Cygwin
1459# - we filter out duplicate java file names because eclipse's compiler
1460#   doesn't like them.
1461#
1462# $(1): javac
1463# $(2): bootclasspath
1464define compile-java
1465$(hide) rm -f $@
1466$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1467$(hide) mkdir -p $(dir $@)
1468$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1469$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1470$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
1471$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1472	    find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1473fi
1474$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1475    | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1476$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1477    $(1) -encoding UTF-8 \
1478    $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1479    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1480    $(2) \
1481    $(addprefix -classpath ,$(strip \
1482        $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
1483    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1484    -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1485    $(PRIVATE_JAVACFLAGS) \
1486    \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1487    || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1488fi
1489$(if $(PRIVATE_JAVA_LAYERS_FILE), $(hide) build/tools/java-layers.py \
1490    $(PRIVATE_JAVA_LAYERS_FILE) \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq,)
1491$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1492$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1493$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1494    -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1495    $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1496    | xargs rm -rf)
1497$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1498    $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1499endef
1500
1501define transform-java-to-classes.jar
1502@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1503$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1504endef
1505
1506# Override the above definitions if we want to do incremetal javac
1507ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1508define compile-java
1509$(hide) mkdir -p $(dir $@)
1510$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1511$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1512$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1513$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1514        newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1515    fi ; \
1516    find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1517    if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1518        find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1519    fi
1520$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1521    | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1522@echo "(Incremental) build source files:"
1523@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1524$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1525    $(1) -encoding UTF-8 \
1526    $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1527    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1528    $(2) \
1529    $(addprefix -classpath ,$(strip \
1530        $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
1531    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1532    -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1533    $(PRIVATE_JAVACFLAGS) \
1534    \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1535    || ( exit 41 ) \
1536fi
1537$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1538$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1539$(hide) rm -f $@
1540$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1541    -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1542    $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1543    | xargs rm -rf)
1544$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1545    $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1546$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1547endef
1548
1549define transform-java-to-classes.jar
1550@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1551$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1552endef
1553endif # ENABLE_INCREMENTALJAVAC
1554
1555define transform-classes.jar-to-emma
1556$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
1557    $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
1558    $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
1559endef
1560
1561#TODO: use a smaller -Xmx value for most libraries;
1562#      only core.jar and framework.jar need a heap this big.
1563# Avoid the memory arguments on Windows, dx fails to load for some reason with them.
1564define transform-classes.jar-to-dex
1565@echo "target Dex: $(PRIVATE_MODULE)"
1566@mkdir -p $(dir $@)
1567$(hide) $(DX) \
1568    $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
1569    --dex --output=$@ \
1570    $(incremental_dex) \
1571    $(if $(NO_OPTIMIZE_DX), \
1572        --no-optimize) \
1573    $(if $(GENERATE_DEX_DEBUG), \
1574	    --debug --verbose \
1575	    --dump-to=$(@:.dex=.lst) \
1576	    --dump-width=1000) \
1577    $(PRIVATE_DX_FLAGS) \
1578    $<
1579endef
1580
1581# Create a mostly-empty .jar file that we'll add to later.
1582# The MacOS jar tool doesn't like creating empty jar files,
1583# so we need to give it something.
1584define create-empty-package
1585@mkdir -p $(dir $@)
1586$(hide) touch $(dir $@)/dummy
1587$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1588$(hide) zip -qd $@ dummy
1589$(hide) rm $(dir $@)/dummy
1590endef
1591
1592#TODO: we kinda want to build different asset packages for
1593#      different configurations, then combine them later (or something).
1594#      Per-locale, etc.
1595#      A list of dynamic and static parameters;  build layers for
1596#      dynamic params that lay over the static ones.
1597#TODO: update the manifest to point to the package file
1598#Note that the version numbers are given to aapt as simple default
1599#values; applications can override these by explicitly stating
1600#them in their manifest.
1601define add-assets-to-package
1602$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
1603    $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
1604    $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
1605    $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1606    $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1607    $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1608    $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
1609    $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1610    $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1611    $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
1612    $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
1613    $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
1614    $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
1615    $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
1616    -F $@
1617endef
1618
1619define add-jni-shared-libs-to-package
1620$(hide) rm -rf $(dir $@)lib
1621$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1622$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1623$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1624$(hide) rm -rf $(dir $@)lib
1625endef
1626
1627#TODO: update the manifest to point to the dex file
1628define add-dex-to-package
1629$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
1630$(hide) $(AAPT) add -k $@ $(PRIVATE_DEX_FILE),\
1631$(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \
1632cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \
1633$(AAPT) add -k $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex)
1634endef
1635
1636# Add java resources added by the current module.
1637#
1638define add-java-resources-to-package
1639$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1640$(hide) jar uf $@ @$(dir $@)jar-arg-list
1641@rm -f $(dir $@)jar-arg-list
1642endef
1643
1644# Add java resources carried by static Java libraries.
1645#
1646define add-carried-java-resources
1647$(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \
1648    java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \
1649        | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \
1650    if [ -n "$$java_res_jar_flags" ] ; then \
1651        echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \
1652        jar uf $@ $$java_res_jar_flags; \
1653    fi; \
1654fi
1655endef
1656
1657# Sign a package using the specified key/cert.
1658#
1659define sign-package
1660$(hide) mv $@ $@.unsigned
1661$(hide) java -jar $(SIGNAPK_JAR) \
1662    $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) \
1663    $(PRIVATE_ADDITIONAL_CERTIFICATES) $@.unsigned $@.signed
1664$(hide) mv $@.signed $@
1665endef
1666
1667# Align STORED entries of a package on 4-byte boundaries
1668# to make them easier to mmap.
1669#
1670define align-package
1671$(hide) mv $@ $@.unaligned
1672$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1673$(hide) mv $@.aligned $@
1674endef
1675
1676define install-dex-debug
1677$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1678	    mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1679	    $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1680		$(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1681	fi
1682$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1683	    mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1684	    $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1685		$(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1686	fi
1687endef
1688
1689# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1690# new prebuilt rules to work, we should change this to copy the
1691# resources to the out directory and then copy the resources.
1692
1693# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1694# in transform-java-to-classes for the sake of vm-tests.
1695define transform-host-java-to-package
1696@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1697$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1698$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
1699endef
1700
1701###########################################################
1702## Obfuscate a jar file
1703###########################################################
1704
1705# PRIVATE_KEEP_FILE is a file containing a list of classes
1706# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1707# The module using this must depend on
1708#        $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1709define obfuscate-jar
1710@echo "Obfuscate jar: $(notdir $@) ($@)"
1711@mkdir -p $(dir $@)
1712@rm -f $@
1713@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1714$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1715		$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1716$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1717		-injars $< \
1718		-outjars $@ \
1719		-target 1.5 \
1720		-dontnote -dontwarn \
1721		-printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1722		-forceprocessing \
1723		-renamesourcefileattribute SourceFile \
1724		-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1725		-repackageclasses \
1726		-keepclassmembers "class * { public protected *; }" \
1727		@$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1728endef
1729
1730###########################################################
1731## Commands for copying files
1732###########################################################
1733
1734# Define a rule to copy a header.  Used via $(eval) by copy_headers.make.
1735# $(1): source header
1736# $(2): destination header
1737define copy-one-header
1738$(2): $(1)
1739	@echo "Header: $$@"
1740	$$(copy-file-to-new-target-with-cp)
1741endef
1742
1743# Define a rule to copy a file.  For use via $(eval).
1744# $(1): source file
1745# $(2): destination file
1746define copy-one-file
1747$(2): $(1) | $(ACP)
1748	@echo "Copy: $$@"
1749	$$(copy-file-to-target)
1750endef
1751
1752# Copies many files.
1753# $(1): The files to copy.  Each entry is a ':' separated src:dst pair
1754# Evaluates to the list of the dst files (ie suitable for a dependency list)
1755define copy-many-files
1756$(foreach f, $(1), $(strip \
1757    $(eval _cmf_tuple := $(subst :, ,$(f))) \
1758    $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \
1759    $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \
1760    $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \
1761    $(_cmf_dest)))
1762endef
1763
1764# Copy the file only if it's a well-formed xml file. For use via $(eval).
1765# $(1): source file
1766# $(2): destination file, must end with .xml.
1767define copy-xml-file-checked
1768$(2): $(1) | $(ACP)
1769	@echo "Copy xml: $$@"
1770	$(hide) xmllint $$< >/dev/null  # Don't print the xml file to stdout.
1771	$$(copy-file-to-target)
1772endef
1773
1774# The -t option to acp and the -p option to cp is
1775# required for OSX.  OSX has a ridiculous restriction
1776# where it's an error for a .a file's modification time
1777# to disagree with an internal timestamp, and this
1778# macro is used to install .a files (among other things).
1779
1780# Copy a single file from one place to another,
1781# preserving permissions and overwriting any existing
1782# file.
1783# We disable the "-t" option for acp cannot handle
1784# high resolution timestamp correctly on file systems like ext4.
1785# Therefore copy-file-to-target is the same as copy-file-to-new-target.
1786define copy-file-to-target
1787@mkdir -p $(dir $@)
1788$(hide) $(ACP) -fp $< $@
1789endef
1790
1791# The same as copy-file-to-target, but use the local
1792# cp command instead of acp.
1793define copy-file-to-target-with-cp
1794@mkdir -p $(dir $@)
1795$(hide) cp -fp $< $@
1796endef
1797
1798# The same as copy-file-to-target, but use the zipalign tool to do so.
1799define copy-file-to-target-with-zipalign
1800@mkdir -p $(dir $@)
1801$(hide) $(ZIPALIGN) -f 4 $< $@
1802endef
1803
1804# The same as copy-file-to-target, but strip out "# comment"-style
1805# comments (for config files and such).
1806define copy-file-to-target-strip-comments
1807@mkdir -p $(dir $@)
1808$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1809endef
1810
1811# The same as copy-file-to-target, but don't preserve
1812# the old modification time.
1813define copy-file-to-new-target
1814@mkdir -p $(dir $@)
1815$(hide) $(ACP) -fp $< $@
1816endef
1817
1818# The same as copy-file-to-new-target, but use the local
1819# cp command instead of acp.
1820define copy-file-to-new-target-with-cp
1821@mkdir -p $(dir $@)
1822$(hide) cp -f $< $@
1823endef
1824
1825# Copy a prebuilt file to a target location.
1826define transform-prebuilt-to-target
1827@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1828$(copy-file-to-target)
1829endef
1830
1831# Copy a prebuilt file to a target location, using zipalign on it.
1832define transform-prebuilt-to-target-with-zipalign
1833@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1834$(copy-file-to-target-with-zipalign)
1835endef
1836
1837# Copy a prebuilt file to a target location, stripping "# comment" comments.
1838define transform-prebuilt-to-target-strip-comments
1839@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1840$(copy-file-to-target-strip-comments)
1841endef
1842
1843###########################################################
1844## On some platforms (MacOS), after copying a static
1845## library, ranlib must be run to update an internal
1846## timestamp!?!?!
1847###########################################################
1848
1849ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1850define transform-host-ranlib-copy-hack
1851    $(hide) ranlib $@ || true
1852endef
1853else
1854define transform-host-ranlib-copy-hack
1855@true
1856endef
1857endif
1858
1859ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1860define transform-ranlib-copy-hack
1861    $(hide) ranlib $@
1862endef
1863else
1864define transform-ranlib-copy-hack
1865@true
1866endef
1867endif
1868
1869
1870###########################################################
1871## Commands to call Proguard
1872###########################################################
1873
1874# Command to copy the file with acp, if proguard is disabled.
1875define proguard-disabled-commands
1876@echo Copying: $@
1877$(hide) $(ACP) -fp $< $@
1878endef
1879
1880# Command to call Proguard
1881# $(1): extra flags for instrumentation.
1882define proguard-enabled-commands
1883@echo Proguard: $@
1884$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1885endef
1886
1887# Figure out the proguard dictionary file of the module that is instrumentationed for.
1888define get-instrumentation-proguard-flags
1889$(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary))
1890endef
1891
1892define transform-jar-to-proguard
1893$(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1894$(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags))
1895$(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))
1896$(eval _instrumentation_proguard_flags:=)
1897$(eval _enable_proguard:=)
1898endef
1899
1900
1901###########################################################
1902## Stuff source generated from one-off tools
1903###########################################################
1904
1905define transform-generated-source
1906@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1907@mkdir -p $(dir $@)
1908$(hide) $(PRIVATE_CUSTOM_TOOL)
1909endef
1910
1911
1912###########################################################
1913## Assertions about attributes of the target
1914###########################################################
1915
1916# $(1): The file to check
1917ifndef get-file-size
1918$(error HOST_OS must define get-file-size)
1919endif
1920
1921# Convert a partition data size (eg, as reported in /proc/mtd) to the
1922# size of the image used to flash that partition (which includes a
1923# spare area for each page).
1924# $(1): the partition data size
1925define image-size-from-data-size
1926$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1927  ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1928$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1929$(eval _isfds_value :=))
1930endef
1931
1932# $(1): The file(s) to check (often $@)
1933# $(2): The maximum total image size, in decimal bytes
1934# $(3): the type of filesystem "yaffs" or "raw"
1935#
1936# If $(2) is empty, evaluates to "true"
1937#
1938# Reserve bad blocks.  Make sure that MAX(1% of partition size, 2 blocks)
1939# is left over after the image has been flashed.  Round the 1% up to the
1940# next whole flash block size.
1941define assert-max-file-size
1942$(if $(2), \
1943  size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1944  total=$$(( $$( echo "$$size" ) )); \
1945  printname=$$(echo -n "$(1)" | tr " " +); \
1946  img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
1947  if [ "$(3)" == "yaffs" ]; then \
1948    reservedblocks=8; \
1949  else \
1950    reservedblocks=0; \
1951  fi; \
1952  twoblocks=$$((img_blocksize * 2)); \
1953  onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
1954  reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1955               reservedblocks * img_blocksize)); \
1956  maxsize=$$(($(2) - reserve)); \
1957  echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
1958  if [ "$$total" -gt "$$maxsize" ]; then \
1959    echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1960    false; \
1961  elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
1962    echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
1963  fi \
1964 , \
1965  true \
1966 )
1967endef
1968
1969# Like assert-max-file-size, but the second argument is a partition
1970# size, which we'll convert to a max image size before checking it
1971# against the files.
1972#
1973# $(1): The file(s) to check (often $@)
1974# $(2): The partition size.
1975define assert-max-image-size
1976$(if $(2), \
1977  $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1978  true)
1979endef
1980
1981
1982###########################################################
1983## Define device-specific radio files
1984###########################################################
1985
1986# Copy a radio image file to the output location, and add it to
1987# INSTALLED_RADIOIMAGE_TARGET.
1988# $(1): filename
1989define add-radio-file
1990  $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
1991endef
1992define add-radio-file-internal
1993INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
1994$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
1995	$$(transform-prebuilt-to-target)
1996endef
1997
1998# Version of add-radio-file that also arranges for the version of the
1999# file to be checked against the contents of
2000# $(TARGET_BOARD_INFO_FILE).
2001# $(1): filename
2002# $(2): name of version variable in board-info (eg, "version-baseband")
2003define add-radio-file-checked
2004  $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
2005endef
2006define add-radio-file-checked-internal
2007INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
2008BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
2009$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
2010	$$(transform-prebuilt-to-target)
2011endef
2012
2013
2014###########################################################
2015# Override the package defined in $(1), setting the
2016# variables listed below differently.
2017#
2018#  $(1): The makefile to override (relative to the source
2019#        tree root)
2020#  $(2): Old LOCAL_PACKAGE_NAME value.
2021#  $(3): New LOCAL_PACKAGE_NAME value.
2022#  $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
2023#  $(5): New LOCAL_CERTIFICATE value.
2024#  $(6): New LOCAL_INSTRUMENTATION_FOR value.
2025#  $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
2026#
2027# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
2028# clear_vars.mk.
2029###########################################################
2030define inherit-package
2031  $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
2032endef
2033
2034define inherit-package-internal
2035  LOCAL_PACKAGE_OVERRIDES \
2036      := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
2037  include $(1)
2038  LOCAL_PACKAGE_OVERRIDES \
2039      := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
2040endef
2041
2042# To be used with inherit-package above
2043# Evalutes to true if the package was overridden
2044define set-inherited-package-variables
2045$(strip $(call set-inherited-package-variables-internal))
2046endef
2047
2048define keep-or-override
2049$(eval $(1) := $(if $(2),$(2),$($(1))))
2050endef
2051
2052define set-inherited-package-variables-internal
2053  $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2054  $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2055  $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2056    $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2057    $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
2058    $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2059    $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2060    $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
2061    $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2062    true \
2063  ,)
2064endef
2065
2066###########################################################
2067## Expand a module name list with REQUIRED modules
2068###########################################################
2069# $(1): The variable name that holds the initial module name list.
2070#       the variable will be modified to hold the expanded results.
2071# $(2): The initial module name list.
2072# Returns empty string (maybe with some whitespaces).
2073define expand-required-modules
2074$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2075  $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2076$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2077  $(call expand-required-modules,$(1),$(_erm_new_modules)))
2078endef
2079
2080###########################################################
2081## Other includes
2082###########################################################
2083
2084# -----------------------------------------------------------------
2085# Rules and functions to help copy important files to DIST_DIR
2086# when requested.
2087include $(BUILD_SYSTEM)/distdir.mk
2088
2089# broken:
2090#	$(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2091
2092###########################################################
2093## Misc notes
2094###########################################################
2095
2096#DEPDIR = .deps
2097#df = $(DEPDIR)/$(*F)
2098
2099#SRCS = foo.c bar.c ...
2100
2101#%.o : %.c
2102#	@$(MAKEDEPEND); \
2103#	  cp $(df).d $(df).P; \
2104#	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2105#	      -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2106#	  rm -f $(df).d
2107#	$(COMPILE.c) -o $@ $<
2108
2109#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2110
2111
2112#%.o : %.c
2113#	$(COMPILE.c) -MD -o $@ $<
2114#	@cp $*.d $*.P; \
2115#	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2116#	      -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2117#	  rm -f $*.d
2118