definitions.mk revision dc1a728fb89677589bf3b5e3a5aab58164c9be6b
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/prelinked.
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###########################################################
82## Debugging; prints a variable list to stdout
83###########################################################
84
85# $(1): variable name list, not variable values
86define print-vars
87$(foreach var,$(1), \
88  $(info $(var):) \
89  $(foreach word,$($(var)), \
90    $(info $(space)$(space)$(word)) \
91   ) \
92 )
93endef
94
95###########################################################
96## Evaluates to true if the string contains the word true,
97## and empty otherwise
98## $(1): a var to test
99###########################################################
100
101define true-or-empty
102$(filter true, $(1))
103endef
104
105
106###########################################################
107## Retrieve the directory of the current makefile
108###########################################################
109
110# Figure out where we are.
111define my-dir
112$(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST),$(MAKEFILE_LIST))))
113endef
114
115###########################################################
116## Retrieve a list of all makefiles immediately below some directory
117###########################################################
118
119define all-makefiles-under
120$(wildcard $(1)/*/Android.mk)
121endef
122
123###########################################################
124## Look under a directory for makefiles that don't have parent
125## makefiles.
126###########################################################
127
128# $(1): directory to search under
129# Ignores $(1)/Android.mk
130define first-makefiles-under
131$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
132        --mindepth=2 $(1) Android.mk)
133endef
134
135###########################################################
136## Retrieve a list of all makefiles immediately below your directory
137###########################################################
138
139define all-subdir-makefiles
140$(call all-makefiles-under,$(call my-dir))
141endef
142
143###########################################################
144## Look in the named list of directories for makefiles,
145## relative to the current directory.
146###########################################################
147
148# $(1): List of directories to look for under this directory
149define all-named-subdir-makefiles
150$(wildcard $(addsuffix /Android.mk, $(addprefix $(my-dir)/,$(1))))
151endef
152
153###########################################################
154## Find all of the java files under the named directories.
155## Meant to be used like:
156##    SRC_FILES := $(call all-java-files-under,src tests)
157###########################################################
158
159define all-java-files-under
160$(patsubst ./%,%, \
161  $(shell cd $(LOCAL_PATH) ; \
162          find $(1) -name "*.java" -and -not -name ".*") \
163 )
164endef
165
166###########################################################
167## Find all of the java files from here.  Meant to be used like:
168##    SRC_FILES := $(call all-subdir-java-files)
169###########################################################
170
171define all-subdir-java-files
172$(call all-java-files-under,.)
173endef
174
175###########################################################
176## Find all of the c files under the named directories.
177## Meant to be used like:
178##    SRC_FILES := $(call all-c-files-under,src tests)
179###########################################################
180
181define all-c-files-under
182$(patsubst ./%,%, \
183  $(shell cd $(LOCAL_PATH) ; \
184          find $(1) -name "*.c" -and -not -name ".*") \
185 )
186endef
187
188###########################################################
189## Find all of the c files from here.  Meant to be used like:
190##    SRC_FILES := $(call all-subdir-c-files)
191###########################################################
192
193define all-subdir-c-files
194$(call all-c-files-under,.)
195endef
196
197###########################################################
198## Find all files named "I*.aidl" under the named directories,
199## which must be relative to $(LOCAL_PATH).  The returned list
200## is relative to $(LOCAL_PATH).
201###########################################################
202
203define all-Iaidl-files-under
204$(patsubst ./%,%, \
205  $(shell cd $(LOCAL_PATH) ; \
206          find $(1) -name "I*.aidl" -and -not -name ".*") \
207 )
208endef
209
210###########################################################
211## Find all of the "I*.aidl" files under $(LOCAL_PATH).
212###########################################################
213
214define all-subdir-Iaidl-files
215$(call all-Iaidl-files-under,.)
216endef
217
218###########################################################
219## Find all of the html files from here.  Meant to be used like:
220##    SRC_FILES := $(call all-subdir-html-files)
221###########################################################
222
223define all-subdir-html-files
224$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find . -name "*.html"))
225endef
226
227###########################################################
228## Find all of the files matching pattern
229##    SRC_FILES := $(call find-subdir-files, <pattern>)
230###########################################################
231
232define find-subdir-files
233$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find $(1)))
234endef
235
236###########################################################
237# find the files in the subdirectory $1 of LOCAL_DIR
238# matching pattern $2, filtering out files $3
239# e.g.
240#     SRC_FILES += $(call find-subdir-subdir-files, \
241#                         css, *.cpp, DontWantThis.cpp)
242###########################################################
243
244define find-subdir-subdir-files
245$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
246            $(LOCAL_PATH) ; find $(1) -maxdepth 1 -name $(2))))
247endef
248
249###########################################################
250## Find all of the files matching pattern
251##    SRC_FILES := $(call all-subdir-java-files)
252###########################################################
253
254define find-subdir-assets
255$(if $(1),$(patsubst ./%,%, \
256	$(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -type f -and -not -type l ; fi)), \
257	$(warning Empty argument supplied to find-subdir-assets) \
258)
259endef
260
261###########################################################
262## Find various file types in a list of directories relative to $(LOCAL_PATH)
263###########################################################
264
265define find-other-java-files
266	$(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
267endef
268
269define find-other-html-files
270	$(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
271endef
272
273###########################################################
274## Scan through each directory of $(1) looking for files
275## that match $(2) using $(wildcard).  Useful for seeing if
276## a given directory or one of its parents contains
277## a particular file.  Returns the first match found,
278## starting furthest from the root.
279###########################################################
280
281define find-parent-file
282$(strip \
283  $(eval _fpf := $(wildcard $(strip $(1))/$(strip $(2)))) \
284  $(if $(_fpf),$(_fpf), \
285       $(if $(filter-out ./ .,$(1)), \
286             $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
287        ) \
288   ) \
289)
290endef
291
292###########################################################
293## Function we can evaluate to introduce a dynamic dependency
294###########################################################
295
296define add-dependency
297$(1): $(2)
298endef
299
300###########################################################
301## Set up the dependencies for a prebuilt target
302##  $(call add-prebuilt-file, srcfile, [targetclass])
303###########################################################
304
305define add-prebuilt-file
306    $(eval $(include-prebuilt))
307endef
308
309define include-prebuilt
310    include $$(CLEAR_VARS)
311    LOCAL_SRC_FILES := $(1)
312    LOCAL_BUILT_MODULE_STEM := $(1)
313    LOCAL_MODULE_SUFFIX := $$(suffix $(1))
314    LOCAL_MODULE := $$(basename $(1))
315    LOCAL_MODULE_CLASS := $(2)
316    include $$(BUILD_PREBUILT)
317endef
318
319###########################################################
320## do multiple prebuilts
321##  $(call target class, files ...)
322###########################################################
323
324define add-prebuilt-files
325    $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
326endef
327
328
329
330###########################################################
331## The intermediates directory.  Where object files go for
332## a given target.  We could technically get away without
333## the "_intermediates" suffix on the directory, but it's
334## nice to be able to grep for that string to find out if
335## anyone's abusing the system.
336###########################################################
337
338# $(1): target class, like "APPS"
339# $(2): target name, like "NotePad"
340# $(3): if non-empty, this is a HOST target.
341# $(4): if non-empty, force the intermediates to be COMMON
342define intermediates-dir-for
343$(strip \
344    $(eval _idfClass := $(strip $(1))) \
345    $(if $(_idfClass),, \
346        $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
347    $(eval _idfName := $(strip $(2))) \
348    $(if $(_idfName),, \
349        $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
350    $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
351    $(if $(filter $(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
352        $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
353      , \
354        $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
355     ) \
356    $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
357)
358endef
359
360# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
361# to determine the intermediates directory.
362#
363# $(1): if non-empty, force the intermediates to be COMMON
364define local-intermediates-dir
365$(strip \
366    $(if $(strip $(LOCAL_MODULE_CLASS)),, \
367        $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
368    $(if $(strip $(LOCAL_MODULE)),, \
369        $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
370    $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
371)
372endef
373
374###########################################################
375## Convert "path/to/libXXX.so" to "-lXXX".
376## Any "path/to/libXXX.a" elements pass through unchanged.
377###########################################################
378
379define normalize-libraries
380$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
381$(filter-out %.so,$(1))
382endef
383
384# TODO: change users to call the common version.
385define normalize-host-libraries
386$(call normalize-libraries,$(1))
387endef
388
389define normalize-target-libraries
390$(call normalize-libraries,$(1))
391endef
392
393###########################################################
394## Convert a list of short module names (e.g., "framework", "Browser")
395## into the list of files that are built for those modules.
396## NOTE: this won't return reliable results until after all
397## sub-makefiles have been included.
398## $(1): target list
399###########################################################
400
401define module-built-files
402$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
403endef
404
405###########################################################
406## Convert a list of short modules names (e.g., "framework", "Browser")
407## into the list of files that are installed for those modules.
408## NOTE: this won't return reliable results until after all
409## sub-makefiles have been included.
410## $(1): target list
411###########################################################
412
413define module-installed-files
414$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
415endef
416
417###########################################################
418## Convert a list of short modules names (e.g., "framework", "Browser")
419## into the list of files that should be used when linking
420## against that module as a public API.
421## TODO: Allow this for more than JAVA_LIBRARIES modules
422## NOTE: this won't return reliable results until after all
423## sub-makefiles have been included.
424## $(1): target list
425###########################################################
426
427define module-stubs-files
428$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
429endef
430
431###########################################################
432## Evaluates to the timestamp file for a doc module, which
433## is the dependency that should be used.
434## $(1): doc module
435###########################################################
436
437define doc-timestamp-for
438$(OUT_DOCS)/$(strip $(1))-timestamp
439endef
440
441
442###########################################################
443## Convert "framework framework-res ext" to "out/.../javalib.jar ..."
444## This lets us treat framework-res as a normal library.
445## $(1): library list
446## $(2): Non-empty if IS_HOST_MODULE
447###########################################################
448
449# $(1): library name
450# $(2): Non-empty if IS_HOST_MODULE
451define _java-lib-dir
452$(call intermediates-dir-for, \
453	$(if $(filter framework-res,$(1)),APPS,JAVA_LIBRARIES),$(1),$(2))
454endef
455
456# $(1): library name
457define _java-lib-classes.jar
458$(if $(filter framework-res,$(1)),package$(COMMON_ANDROID_PACKAGE_SUFFIX),classes$(COMMON_JAVA_PACKAGE_SUFFIX))
459endef
460
461# $(1): library name
462# $(2): Non-empty if IS_HOST_MODULE
463define _java-lib-full-classes.jar
464$(call _java-lib-dir,$(1),$(2))/$(call _java-lib-classes.jar,$(1))
465endef
466
467# $(1): library name list
468# $(2): Non-empty if IS_HOST_MODULE
469define java-lib-files
470$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
471endef
472
473# $(1): library name
474define _java-lib-dep
475$(if $(filter framework-res,$(1)),package$(COMMON_ANDROID_PACKAGE_SUFFIX),javalib$(COMMON_JAVA_PACKAGE_SUFFIX))
476endef
477
478# $(1): library name
479# $(2): Non-empty if IS_HOST_MODULE
480define _java-lib-full-dep
481$(call _java-lib-dir,$(1),$(2))/$(call _java-lib-dep,$(1))
482endef
483
484# $(1): library name list
485# $(2): Non-empty if IS_HOST_MODULE
486define java-lib-deps
487$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
488endef
489
490###########################################################
491## Convert "a b c" into "a:b:c"
492###########################################################
493
494empty :=
495space := $(empty) $(empty)
496
497define normalize-path-list
498$(subst $(space),:,$(strip $(1)))
499endef
500
501###########################################################
502## Read the word out of a colon-separated list of words.
503## This has the same behavior as the built-in function
504## $(word n,str).
505##
506## The individual words may not contain spaces.
507##
508## $(1): 1 based index
509## $(2): value of the form a:b:c...
510###########################################################
511
512define word-colon
513$(word $(1),$(subst :,$(space),$(2)))
514endef
515
516###########################################################
517## Convert "a=b c= d e = f" into "a=b c=d e=f"
518##
519## $(1): list to collapse
520## $(2): if set, separator word; usually "=", ":", or ":="
521##       Defaults to "=" if not set.
522###########################################################
523
524define collapse-pairs
525$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
526$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
527    $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
528endef
529
530###########################################################
531## MODULE_TAG set operations
532###########################################################
533
534# Given a list of tags, return the targets that specify
535# any of those tags.
536# $(1): tag list
537define modules-for-tag-list
538$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
539endef
540
541# Same as modules-for-tag-list, but operates on
542# ALL_MODULE_NAME_TAGS.
543# $(1): tag list
544define module-names-for-tag-list
545$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
546endef
547
548# Given an accept and reject list, find the matching
549# set of targets.  If a target has multiple tags and
550# any of them are rejected, the target is rejected.
551# Reject overrides accept.
552# $(1): list of tags to accept
553# $(2): list of tags to reject
554#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
555define get-tagged-modules
556$(filter-out \
557	$(call modules-for-tag-list,$(2)), \
558	    $(call modules-for-tag-list,$(1)))
559endef
560
561###########################################################
562## Append a leaf to a base path.  Properly deals with
563## base paths ending in /.
564##
565## $(1): base path
566## $(2): leaf path
567###########################################################
568
569define append-path
570$(subst //,/,$(1)/$(2))
571endef
572
573
574###########################################################
575## Package filtering
576###########################################################
577
578# Given a list of installed modules (short or long names)
579# return a list of the packages (yes, .apk packages, not
580# modules in general) that are overridden by this list and,
581# therefore, should not be installed.
582# $(1): mixed list of installed modules
583# TODO: This is fragile; find a reliable way to get this information.
584define _get-package-overrides
585 $(eval ### Discard any words containing slashes, unless they end in .apk, \
586        ### in which case trim off the directory component and the suffix. \
587        ### If there are no slashes, keep the entire word.)
588 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
589 $(eval _gpo_names := \
590     $(filter %.apk,$(_gpo_names)) \
591     $(filter-out %@@@ @@@%,$(_gpo_names)))
592 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
593 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
594
595 $(eval ### Remove any remaining words that contain dots.)
596 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
597 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
598
599 $(eval ### Now we have a list of any words that could possibly refer to \
600        ### packages, although there may be words that do not.  Only \
601        ### real packages will be present under PACKAGES.*, though.)
602 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
603endef
604
605define get-package-overrides
606$(strip $(sort $(call _get-package-overrides,$(1))))
607endef
608
609###########################################################
610## Output the command lines, or not
611###########################################################
612
613ifeq ($(strip $(SHOW_COMMANDS)),)
614define pretty
615@echo $1
616endef
617hide := @
618else
619define pretty
620endef
621hide :=
622endif
623
624###########################################################
625## Dump the variables that are associated with targets
626###########################################################
627
628define dump-module-variables
629@echo all_dependencies=$^
630@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
631@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
632@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
633@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
634@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
635@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
636@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
637@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
638@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
639@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
640@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
641@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
642@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
643@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
644@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
645endef
646
647###########################################################
648## Commands for using sed to replace given variable values
649###########################################################
650
651define transform-variables
652@mkdir -p $(dir $@)
653@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
654$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
655$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
656endef
657
658
659###########################################################
660## Commands for munging the dependency files GCC generates
661###########################################################
662
663define transform-d-to-p
664@cp $(@:%.o=%.d) $(@:%.o=%.P); \
665	sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
666		-e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
667	rm -f $(@:%.o=%.d)
668endef
669
670###########################################################
671## Commands for running lex
672###########################################################
673
674define transform-l-to-cpp
675@mkdir -p $(dir $@)
676@echo "Lex: $(PRIVATE_MODULE) <= $<"
677$(hide) $(LEX) -o$@ $<
678endef
679
680###########################################################
681## Commands for running yacc
682##
683## Because the extension of c++ files can change, the
684## extension must be specified in $1.
685## E.g, "$(call transform-y-to-cpp,.cpp)"
686###########################################################
687
688define transform-y-to-cpp
689@mkdir -p $(dir $@)
690@echo "Yacc: $(PRIVATE_MODULE) <= $<"
691$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
692touch $(@:$1=$(YACC_HEADER_SUFFIX))
693echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
694echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
695cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
696echo '#endif' >> $(@:$1=.h)
697rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
698endef
699
700
701###########################################################
702## Commands for running aidl
703###########################################################
704
705define transform-aidl-to-java
706@mkdir -p $(dir $@)
707@echo "Aidl: $(PRIVATE_MODULE) <= $<"
708$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
709endef
710#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
711
712
713
714###########################################################
715## Commands for running gcc to compile a C++ file
716###########################################################
717
718define transform-cpp-to-o
719@mkdir -p $(dir $@)
720@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
721$(hide) $(PRIVATE_CXX) \
722	$(foreach incdir, \
723	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
724		$(TARGET_PROJECT_INCLUDES) \
725		$(TARGET_C_INCLUDES) \
726	     ) \
727	    $(PRIVATE_C_INCLUDES) \
728	  , \
729	    -I $(incdir) \
730	 ) \
731	-c \
732	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
733	    $(TARGET_GLOBAL_CFLAGS) \
734	    $(TARGET_GLOBAL_CPPFLAGS) \
735	    $(PRIVATE_ARM_CFLAGS) \
736	 ) \
737	-fno-rtti \
738	$(PRIVATE_CFLAGS) \
739	$(PRIVATE_CPPFLAGS) \
740	$(PRIVATE_DEBUG_CFLAGS) \
741	-MD -o $@ $<
742$(hide) $(transform-d-to-p)
743endef
744
745
746###########################################################
747## Commands for running gcc to compile a C file
748###########################################################
749
750# $(1): extra flags
751define transform-c-or-s-to-o-no-deps
752@mkdir -p $(dir $@)
753$(hide) $(PRIVATE_CC) \
754	$(foreach incdir, \
755	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
756		$(TARGET_PROJECT_INCLUDES) \
757		$(TARGET_C_INCLUDES) \
758	     ) \
759	    $(PRIVATE_C_INCLUDES) \
760	  , \
761	    -I $(incdir) \
762	 ) \
763	-c \
764	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
765	    $(TARGET_GLOBAL_CFLAGS) \
766	    $(PRIVATE_ARM_CFLAGS) \
767	 ) \
768	$(PRIVATE_CFLAGS) \
769	$(1) \
770	$(PRIVATE_DEBUG_CFLAGS) \
771	-MD -o $@ $<
772endef
773
774define transform-c-to-o-no-deps
775@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
776$(call transform-c-or-s-to-o-no-deps, )
777endef
778
779define transform-s-to-o-no-deps
780@echo "target asm: $(PRIVATE_MODULE) <= $<"
781$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
782endef
783
784define transform-c-to-o
785$(transform-c-to-o-no-deps)
786$(hide) $(transform-d-to-p)
787endef
788
789define transform-s-to-o
790$(transform-s-to-o-no-deps)
791$(hide) $(transform-d-to-p)
792endef
793
794###########################################################
795## Commands for running gcc to compile an Objective-C file
796## This should never happen for target builds but this
797## will error at build time.
798###########################################################
799
800define transform-m-to-o-no-deps
801@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
802$(call transform-c-or-s-to-o-no-deps)
803endef
804
805define transform-m-to-o
806$(transform-m-to-o-no-deps)
807$(hide) $(transform-d-to-p)
808endef
809
810###########################################################
811## Commands for running gcc to compile a host C++ file
812###########################################################
813
814define transform-host-cpp-to-o
815@mkdir -p $(dir $@)
816@echo "host C++: $(PRIVATE_MODULE) <= $<"
817$(hide) $(PRIVATE_CXX) \
818	$(foreach incdir, \
819	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
820		$(HOST_PROJECT_INCLUDES) \
821		$(HOST_C_INCLUDES) \
822	     ) \
823	    $(PRIVATE_C_INCLUDES) \
824	  , \
825	    -I $(incdir) \
826	 ) \
827	-c \
828	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
829	    $(HOST_GLOBAL_CFLAGS) \
830	    $(HOST_GLOBAL_CPPFLAGS) \
831	 ) \
832	$(PRIVATE_CFLAGS) \
833	$(PRIVATE_CPPFLAGS) \
834	$(PRIVATE_DEBUG_CFLAGS) \
835	-MD -o $@ $<
836$(transform-d-to-p)
837endef
838
839
840###########################################################
841## Commands for running gcc to compile a host C file
842###########################################################
843
844# $(1): extra flags
845define transform-host-c-or-s-to-o-no-deps
846@mkdir -p $(dir $@)
847$(hide) $(PRIVATE_CC) \
848	$(foreach incdir, \
849	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
850		$(HOST_PROJECT_INCLUDES) \
851		$(HOST_C_INCLUDES) \
852	     ) \
853	    $(PRIVATE_C_INCLUDES) \
854	  , \
855	    -I $(incdir) \
856	 ) \
857	-c \
858	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
859	    $(HOST_GLOBAL_CFLAGS) \
860	 ) \
861	$(PRIVATE_CFLAGS) \
862	$(1) \
863	$(PRIVATE_DEBUG_CFLAGS) \
864	-MD -o $@ $<
865endef
866
867define transform-host-c-to-o-no-deps
868@echo "host C: $(PRIVATE_MODULE) <= $<"
869$(call transform-host-c-or-s-to-o-no-deps, )
870endef
871
872define transform-host-s-to-o-no-deps
873@echo "host asm: $(PRIVATE_MODULE) <= $<"
874$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
875endef
876
877define transform-host-c-to-o
878$(transform-host-c-to-o-no-deps)
879$(transform-d-to-p)
880endef
881
882define transform-host-s-to-o
883$(transform-host-s-to-o-no-deps)
884$(transform-d-to-p)
885endef
886
887###########################################################
888## Commands for running gcc to compile a host Objective-C file
889###########################################################
890
891define transform-host-m-to-o-no-deps
892@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
893$(call transform-host-c-or-s-to-o-no-deps)
894endef
895
896define tranform-host-m-to-o
897$(transform-host-m-to-o-no-deps)
898$(transform-d-to-p)
899endef
900
901###########################################################
902## Commands for running ar
903###########################################################
904
905define extract-and-include-whole-static-libs
906$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
907	@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(lib)]"; \
908	ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(lib)))_objs;\
909	rm -rf $$ldir; \
910	mkdir -p $$ldir; \
911	filelist=; \
912	for f in `$(TARGET_AR) t $(lib)`; do \
913	    $(TARGET_AR) p $(lib) $$f > $$ldir/$$f; \
914	    filelist="$$filelist $$ldir/$$f"; \
915	done ; \
916	$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist;\
917)
918endef
919
920# Explicitly delete the archive first so that ar doesn't
921# try to add to an existing archive.
922define transform-o-to-static-lib
923@mkdir -p $(dir $@)
924@rm -f $@
925$(extract-and-include-whole-static-libs)
926@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
927$(hide) $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $^
928endef
929
930###########################################################
931## Commands for running host ar
932###########################################################
933
934# Explicitly delete the archive first so that ar doesn't
935# try to add to an existing archive.
936define transform-host-o-to-static-lib
937@mkdir -p $(dir $@)
938@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
939@rm -f $@
940$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $^
941endef
942
943
944###########################################################
945## Commands for running gcc to link a shared library or package
946###########################################################
947
948# ld just seems to be so finicky with command order that we allow
949# it to be overriden en-masse see combo/linux-arm.make for an example.
950ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
951define transform-host-o-to-shared-lib-inner
952$(HOST_CXX) \
953	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
954	-Wl,-rpath,\$$ORIGIN/../lib \
955	-shared -Wl,-soname,$(notdir $@) \
956	$(PRIVATE_LDFLAGS) \
957	$(HOST_GLOBAL_LD_DIRS) \
958	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
959	   $(HOST_GLOBAL_LDFLAGS) \
960	) \
961	$(PRIVATE_ALL_OBJECTS) \
962	-Wl,--whole-archive \
963	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
964	-Wl,--no-whole-archive \
965	$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
966	$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
967	-o $@ \
968	$(PRIVATE_LDLIBS)
969endef
970endif
971
972define transform-host-o-to-shared-lib
973@mkdir -p $(dir $@)
974@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
975$(hide) $(transform-host-o-to-shared-lib-inner)
976endef
977
978define transform-host-o-to-package
979@mkdir -p $(dir $@)
980@echo "host Package: $(PRIVATE_MODULE) ($@)"
981$(hide) $(transform-host-o-to-shared-lib-inner)
982endef
983
984
985###########################################################
986## Commands for running gcc to link a shared library or package
987###########################################################
988
989#echo >$@.vers "{"; \
990#echo >>$@.vers " global:"; \
991#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) "  " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
992#echo >>$@.vers " local:"; \
993#echo >>$@.vers "  *;"; \
994#echo >>$@.vers "};"; \
995
996#	-Wl,--version-script=$@.vers \
997
998# ld just seems to be so finicky with command order that we allow
999# it to be overriden en-masse see combo/linux-arm.make for an example.
1000ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1001define transform-o-to-shared-lib-inner
1002$(TARGET_CXX) \
1003	$(TARGET_GLOBAL_LDFLAGS) \
1004	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1005	-Wl,-rpath,\$$ORIGIN/../lib \
1006	-shared -Wl,-soname,$(notdir $@) \
1007	$(PRIVATE_LDFLAGS) \
1008	$(TARGET_GLOBAL_LD_DIRS) \
1009	$(PRIVATE_ALL_OBJECTS) \
1010	-Wl,--whole-archive \
1011	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1012	-Wl,--no-whole-archive \
1013	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1014	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1015	-o $@ \
1016	$(PRIVATE_LDLIBS)
1017endef
1018endif
1019
1020define transform-o-to-shared-lib
1021@mkdir -p $(dir $@)
1022@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
1023$(hide) $(transform-o-to-shared-lib-inner)
1024endef
1025
1026define transform-o-to-package
1027@mkdir -p $(dir $@)
1028@echo "target Package: $(PRIVATE_MODULE) ($@)"
1029$(hide) $(transform-o-to-shared-lib-inner)
1030endef
1031
1032
1033###########################################################
1034## Commands for filtering a target executable or library
1035###########################################################
1036
1037# Because of bug 743462 ("Prelinked image magic gets stripped
1038# by arm-elf-objcopy"), we have to use soslim to strip target
1039# binaries.
1040define transform-to-stripped
1041@mkdir -p $(dir $@)
1042@echo "target Strip: $(PRIVATE_MODULE) ($@)"
1043$(hide) $(SOSLIM) --strip --shady --quiet $< --outfile $@
1044endef
1045
1046define transform-to-prelinked
1047@mkdir -p $(dir $@)
1048@echo "target Prelink: $(PRIVATE_MODULE) ($@)"
1049$(hide) $(APRIORI) \
1050		--prelinkmap $(TARGET_PRELINKER_MAP) \
1051		--locals-only \
1052		--quiet \
1053		$< \
1054		--output $@
1055endef
1056
1057
1058###########################################################
1059## Commands for running gcc to link an executable
1060###########################################################
1061
1062ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1063define transform-o-to-executable-inner
1064$(TARGET_CXX) \
1065	$(TARGET_GLOBAL_LDFLAGS) \
1066	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1067	$(TARGET_GLOBAL_LD_DIRS) \
1068	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1069	-Wl,-rpath,\$$ORIGIN/../lib \
1070	$(PRIVATE_LDFLAGS) \
1071	$(TARGET_GLOBAL_LD_DIRS) \
1072	$(PRIVATE_ALL_OBJECTS) \
1073	-Wl,--whole-archive \
1074	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1075	-Wl,--no-whole-archive \
1076	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1077	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1078	-o $@ \
1079	$(PRIVATE_LDLIBS)
1080endef
1081endif
1082
1083define transform-o-to-executable
1084@mkdir -p $(dir $@)
1085@echo "target Executable: $(PRIVATE_MODULE) ($@)"
1086$(hide) $(transform-o-to-executable-inner)
1087endef
1088
1089
1090###########################################################
1091## Commands for running gcc to link a statically linked
1092## executable.  In practice, we only use this on arm, so
1093## the other platforms don't have the
1094## transform-o-to-static-executable defined
1095###########################################################
1096
1097ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1098define transform-o-to-static-executable-inner
1099endef
1100endif
1101
1102define transform-o-to-static-executable
1103@mkdir -p $(dir $@)
1104@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
1105$(hide) $(transform-o-to-static-executable-inner)
1106endef
1107
1108
1109###########################################################
1110## Commands for running gcc to link a host executable
1111###########################################################
1112
1113ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1114define transform-host-o-to-executable-inner
1115$(HOST_CXX) \
1116	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1117	-Wl,-rpath,\$$ORIGIN/../lib \
1118	$(HOST_GLOBAL_LD_DIRS) \
1119	$(PRIVATE_LDFLAGS) \
1120	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1121		$(HOST_GLOBAL_LDFLAGS) \
1122	) \
1123	$(PRIVATE_ALL_OBJECTS) \
1124	-Wl,--whole-archive \
1125	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1126	-Wl,--no-whole-archive \
1127	$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1128	$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1129	-o $@ \
1130	$(PRIVATE_LDLIBS)
1131endef
1132endif
1133
1134define transform-host-o-to-executable
1135@mkdir -p $(dir $@)
1136@echo "host Executable: $(PRIVATE_MODULE) ($@)"
1137$(hide) $(transform-host-o-to-executable-inner)
1138endef
1139
1140
1141###########################################################
1142## Commands for running javac to make .class files
1143###########################################################
1144
1145#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1146#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1147
1148# TODO: Right now we generate the asset resources twice, first as part
1149# of generating the Java classes, then at the end when packaging the final
1150# assets.  This should be changed to do one of two things: (1) Don't generate
1151# any resource files the first time, only create classes during that stage;
1152# or (2) Don't use the -c flag with the second stage, instead taking the
1153# resource files from the first stage as additional input.  My original intent
1154# was to use approach (2), but this requires a little more work in the tool.
1155# Maybe we should just use approach (1).
1156
1157# This rule creates the R.java and Manifest.java files, both of which
1158# are PRODUCT-neutral.  Don't pass PRODUCT_AAPT_CONFIG to this invocation.
1159define create-resource-java-files
1160@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1161@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
1162$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m -z \
1163    $(eval # PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
1164    $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1165    $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1166    $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1167    $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1168    $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1169    $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
1170    $(addprefix --min-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1171    $(addprefix --target-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1172    $(addprefix --version-code , $(PLATFORM_SDK_VERSION)) \
1173    $(addprefix --version-name , $(PLATFORM_VERSION))
1174endef
1175
1176ifeq ($(HOST_OS),windows)
1177xlint_unchecked :=
1178else
1179#xlint_unchecked := -Xlint:unchecked
1180endif
1181
1182# emit-line, <word list>, <output file>
1183define emit-line
1184   $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1185endef
1186
1187# dump-words-to-file, <word list>, <output file>
1188define dump-words-to-file
1189        @rm -f $(2)
1190        @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1191        @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1192        @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1193        @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1194        @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1195        @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1196        @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1197        @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1198        @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1199        @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1200        @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1201        @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1202        @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1203        @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1204        @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1205        @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1206        @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1207        @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1208        @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1209        @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
1210        @$(if $(wordlist 4001,4002,$(1)),$(error Too many words ($(words $(1)))))
1211endef
1212
1213# For a list of jar files, unzip them to a specified directory,
1214# but make sure that no META-INF files come along for the ride.
1215#
1216# $(1): files to unzip
1217# $(2): destination directory
1218define unzip-jar-files
1219  $(hide) for f in $(1); \
1220  do \
1221    if [ ! -f $$f ]; then \
1222      echo Missing file $$f; \
1223      exit 1; \
1224    fi; \
1225    unzip -qo $$f -d $(2); \
1226    (cd $(2) && rm -rf META-INF); \
1227  done
1228endef
1229
1230# below we write the list of java files to java-source-list to avoid argument
1231# list length problems with Cygwin we filter out duplicate java file names
1232# because eclipse's compiler doesn't like them.
1233define transform-java-to-classes.jar
1234@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1235$(hide) rm -f $@
1236$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1237$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1238$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES), \
1239    $(PRIVATE_CLASS_INTERMEDIATES_DIR))
1240$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list)
1241$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1242	    find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list; \
1243fi
1244$(hide) tr ' ' '\n' < $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list \
1245    | sort -u > $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list-uniq
1246$(hide) $(TARGET_JAVAC) -encoding ascii $(PRIVATE_BOOTCLASSPATH) \
1247    $(addprefix -classpath ,$(strip \
1248        $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
1249    $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) $(xlint_unchecked) \
1250    -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1251    \@$(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list-uniq \
1252    || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 )
1253$(hide) rm -f $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list
1254$(hide) rm -f $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list-uniq
1255$(hide) mkdir -p $(dir $@)
1256$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1257    $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1258$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1259endef
1260
1261define transform-classes.jar-to-emma
1262$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
1263    $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR)
1264endef
1265
1266#TODO: use a smaller -Xmx value for most libraries;
1267#      only core.jar and framework.jar need a heap this big.
1268define transform-classes.jar-to-dex
1269@echo "target Dex: $(PRIVATE_MODULE)"
1270@mkdir -p $(dir $@)
1271$(hide) $(DX) -JXms16M \
1272    -JXmx1536M \
1273    --dex --output=$@ \
1274    $(if $(NO_OPTIMIZE_DX), \
1275        --no-optimize) \
1276    $(if $(GENERATE_DEX_DEBUG), \
1277	    --debug --verbose \
1278	    --dump-to=$(@:.dex=.lst) \
1279	    --dump-width=1000) \
1280    $(PRIVATE_DX_FLAGS) \
1281    $<
1282endef
1283
1284# Create a mostly-empty .jar file that we'll add to later.
1285# The MacOS jar tool doesn't like creating empty jar files,
1286# so we need to give it something.
1287define create-empty-package
1288@mkdir -p $(dir $@)
1289$(hide) touch $(dir $@)/dummy
1290$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1291$(hide) zip -qd $@ dummy
1292$(hide) rm $(dir $@)/dummy
1293endef
1294
1295#TODO: we kinda want to build different asset packages for
1296#      different configurations, then combine them later (or something).
1297#      Per-locale, etc.
1298#      A list of dynamic and static parameters;  build layers for
1299#      dynamic params that lay over the static ones.
1300#TODO: update the manifest to point to the package file
1301#Note that the version numbers are given to aapt as simple default
1302#values; applications can override these by explicitly stating
1303#them in their manifest.
1304define add-assets-to-package
1305$(hide) $(AAPT) package -z -u $(PRIVATE_AAPT_FLAGS) \
1306    $(addprefix -c , $(PRODUCT_AAPT_CONFIG)) \
1307    $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1308    $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1309    $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1310    $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
1311    $(addprefix --min-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1312    $(addprefix --target-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1313    $(addprefix --version-code , $(PLATFORM_SDK_VERSION)) \
1314    $(addprefix --version-name , $(PLATFORM_VERSION)) \
1315    -F $@
1316endef
1317
1318#TODO: Allow library directory to be specified based on the target
1319#      CPU and ABI instead of being hard coded as armeabi.
1320define add-jni-shared-libs-to-package
1321$(hide) rm -rf $(dir $@)lib
1322$(hide) mkdir -p $(dir $@)lib/armeabi
1323$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/armeabi
1324$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1325$(hide) rm -rf $(dir $@)lib
1326endef
1327
1328#TODO: use aapt instead of zip, once it supports junking the path
1329#      (so adding "xxx/yyy/classes.dex" appears as "classes.dex")
1330#TODO: update the manifest to point to the dex file
1331define add-dex-to-package
1332$(hide) zip -qj $@ $(PRIVATE_DEX_FILE)
1333endef
1334
1335define add-java-resources-to-package
1336$(hide) jar uf $@ $(PRIVATE_EXTRA_JAR_ARGS)
1337endef
1338
1339# Sign a package using the specified key/cert.
1340#
1341define sign-package
1342$(hide) mv $@ $@.unsigned
1343$(hide) java -jar $(SIGNAPK_JAR) \
1344	$(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) $@.unsigned $@.signed
1345$(hide) mv $@.signed $@
1346endef
1347
1348# Align STORED entries of a package on 4-byte boundaries
1349# to make them easier to mmap.
1350#
1351define align-package
1352$(hide) mv $@ $@.unaligned
1353$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1354$(hide) mv $@.aligned $@
1355endef
1356
1357define install-dex-debug
1358$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1359	    mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1360	    $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1361		$(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1362	fi
1363$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1364	    mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1365	    $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1366		$(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1367	fi
1368endef
1369
1370# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1371# new prebuilt rules to work, we should change this to copy the
1372# resources to the out directory and then copy the resources.
1373
1374# Note: not using aapt tool for this because we aren't making
1375# an android package for the host.
1376define transform-host-java-to-package
1377@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1378@rm -f $@
1379@rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1380@mkdir -p $(dir $@)
1381@mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1382$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES), \
1383    $(PRIVATE_CLASS_INTERMEDIATES_DIR))
1384$(call dump-words-to-file,$(sort\
1385	$(PRIVATE_JAVA_SOURCES)),\
1386	$(PRIVATE_INTERMEDIATES_DIR)/java-source-list-uniq)
1387$(hide) $(HOST_JAVAC) -encoding ascii -g \
1388	$(xlint_unchecked) \
1389	$(addprefix -classpath ,$(strip \
1390		$(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
1391	-extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR)\
1392        \@$(PRIVATE_INTERMEDIATES_DIR)/java-source-list-uniq || \
1393	( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 )
1394$(hide) rm -f $(PRIVATE_INTERMEDIATES_DIR)/java-source-list
1395$(hide) rm -f $(PRIVATE_INTERMEDIATES_DIR)/java-source-list-uniq
1396$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1397    $@ $(PRIVATE_JAR_MANIFEST) $(PRIVATE_EXTRA_JAR_ARGS) \
1398    -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1399endef
1400
1401###########################################################
1402## Obfuscate a jar file
1403###########################################################
1404
1405# PRIVATE_KEEP_FILE is a file containing a list of classes
1406# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1407# The module using this must depend on
1408#        $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1409define obfuscate-jar
1410@echo "Obfuscate jar: $(notdir $@) ($@)"
1411@mkdir -p $(dir $@)
1412@rm -f $@
1413@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1414$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1415		$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1416$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1417		-injars $< \
1418		-outjars $@ \
1419		-target 1.5 \
1420		-dontnote -dontwarn \
1421		-printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1422		-forceprocessing \
1423		-renamesourcefileattribute SourceFile \
1424		-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1425		-repackageclasses \
1426		-keepclassmembers "class * { public protected *; }" \
1427		@$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1428endef
1429
1430###########################################################
1431## Commands for copying files
1432###########################################################
1433
1434# Define a rule to copy a header.  Used via $(eval) by copy_headers.make.
1435# $(1): source header
1436# $(2): destination header
1437define copy-one-header
1438$(2): $(1)
1439	@echo "Header: $$@"
1440	$$(copy-file-to-new-target-with-cp)
1441endef
1442
1443# Define a rule to copy a file.  For use via $(eval).
1444# $(1): source file
1445# $(2): destination file
1446define copy-one-file
1447$(2): $(1) | $(ACP)
1448	@echo "Copy: $$@"
1449	$$(copy-file-to-target)
1450endef
1451
1452# The -t option to acp and the -p option to cp is
1453# required for OSX.  OSX has a ridiculous restriction
1454# where it's an error for a .a file's modification time
1455# to disagree with an internal timestamp, and this
1456# macro is used to install .a files (among other things).
1457
1458# Copy a single file from one place to another,
1459# preserving permissions and overwriting any existing
1460# file.
1461define copy-file-to-target
1462@mkdir -p $(dir $@)
1463$(hide) $(ACP) -fpt $< $@
1464endef
1465
1466# The same as copy-file-to-target, but use the local
1467# cp command instead of acp.
1468define copy-file-to-target-with-cp
1469@mkdir -p $(dir $@)
1470$(hide) cp -fp $< $@
1471endef
1472
1473# The same as copy-file-to-target, but don't preserve
1474# the old modification time.
1475define copy-file-to-new-target
1476@mkdir -p $(dir $@)
1477$(hide) $(ACP) -fp $< $@
1478endef
1479
1480# The same as copy-file-to-new-target, but use the local
1481# cp command instead of acp.
1482define copy-file-to-new-target-with-cp
1483@mkdir -p $(dir $@)
1484$(hide) cp -f $< $@
1485endef
1486
1487# Copy a prebuilt file to a target location.
1488define transform-prebuilt-to-target
1489@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1490$(copy-file-to-target)
1491endef
1492
1493
1494###########################################################
1495## On some platforms (MacOS), after copying a static
1496## library, ranlib must be run to update an internal
1497## timestamp!?!?!
1498###########################################################
1499
1500ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1501define transform-host-ranlib-copy-hack
1502    $(hide) ranlib $@ || true
1503endef
1504else
1505define transform-host-ranlib-copy-hack
1506true
1507endef
1508endif
1509
1510ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1511define transform-ranlib-copy-hack
1512    $(hide) ranlib $@
1513endef
1514else
1515define transform-ranlib-copy-hack
1516true
1517endef
1518endif
1519
1520
1521###########################################################
1522## Stuff source generated from one-off tools
1523###########################################################
1524
1525define transform-generated-source
1526@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1527@mkdir -p $(dir $@)
1528$(hide) $(PRIVATE_CUSTOM_TOOL)
1529endef
1530
1531
1532###########################################################
1533## Assertions about attributes of the target
1534###########################################################
1535
1536# $(1): The file to check
1537ifndef get-file-size
1538$(error HOST_OS must define get-file-size)
1539endif
1540
1541# Convert a partition data size (eg, as reported in /proc/mtd) to the
1542# size of the image used to flash that partition (which includes a
1543# 64-byte spare area for each 2048-byte page).
1544# $(1): the partition data size
1545define image-size-from-data-size
1546$(shell echo $$(($(1) / 2048 * (2048+64))))
1547endef
1548
1549# $(1): The file(s) to check (often $@)
1550# $(2): The maximum total image size, in decimal bytes
1551#
1552# If $(2) is empty, evaluates to "true"
1553#
1554# Reserve bad blocks.  Make sure that MAX(1% of partition size, 2 blocks)
1555# is left over after the image has been flashed.  Round the 1% up to the
1556# next whole flash block size.
1557define assert-max-file-size
1558$(if $(2), \
1559  size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1560  total=$$(( $$( echo "$$size" ) )); \
1561  printname=$$(echo -n "$(1)" | tr " " +); \
1562  echo "$$printname total size is $$total"; \
1563  img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
1564  twoblocks=$$((img_blocksize * 2)); \
1565  onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
1566  reserve=$$((twoblocks > onepct ? twoblocks : onepct)); \
1567  maxsize=$$(($(2) - reserve)); \
1568  if [ "$$total" -gt "$$maxsize" ]; then \
1569    echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1570    false; \
1571  elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
1572    echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
1573  fi \
1574 , \
1575  true \
1576 )
1577endef
1578
1579
1580###########################################################
1581## Define device-specific radio files
1582###########################################################
1583
1584# Copy a radio image file to the output location, and add it to
1585# INSTALLED_RADIOIMAGE_TARGET.
1586# $(1): filename
1587define add-radio-file
1588  $(eval $(call add-radio-file-internal,$(1)))
1589endef
1590define add-radio-file-internal
1591INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(1)
1592ALL_PREBUILT += $$(PRODUCT_OUT)/$(1)
1593$$(PRODUCT_OUT)/$(1) : $$(LOCAL_PATH)/$(1) | $$(ACP)
1594	$$(transform-prebuilt-to-target)
1595endef
1596
1597
1598###########################################################
1599## Other includes
1600###########################################################
1601
1602# -----------------------------------------------------------------
1603# Rules and functions to help copy important files to DIST_DIR
1604# when requested.
1605include $(BUILD_SYSTEM)/distdir.mk
1606
1607
1608# broken:
1609#	$(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
1610
1611###########################################################
1612## Misc notes
1613###########################################################
1614
1615#DEPDIR = .deps
1616#df = $(DEPDIR)/$(*F)
1617
1618#SRCS = foo.c bar.c ...
1619
1620#%.o : %.c
1621#	@$(MAKEDEPEND); \
1622#	  cp $(df).d $(df).P; \
1623#	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
1624#	      -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
1625#	  rm -f $(df).d
1626#	$(COMPILE.c) -o $@ $<
1627
1628#-include $(SRCS:%.c=$(DEPDIR)/%.P)
1629
1630
1631#%.o : %.c
1632#	$(COMPILE.c) -MD -o $@ $<
1633#	@cp $*.d $*.P; \
1634#	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
1635#	      -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
1636#	  rm -f $*.d
1637