blob: 4da78de1523ef7b992e483d228f5c1c84cc9e460 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#
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
The Android Open Source Project88b60792009-03-03 19:28:42 -080044# 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
Iliyan Malchevb375e712011-03-08 16:19:48 -080069# The list of dynamic binaries that haven't been stripped/compressed/etc.
The Android Open Source Project88b60792009-03-03 19:28:42 -080070ALL_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
Ying Wangfd626f22011-12-12 12:57:38 -080081# GPL module license files
82ALL_GPL_MODULE_LICENSE_FILES:=
83
Ying Wang9485a572013-02-22 14:32:30 -080084# Target and host installed module's dependencies on shared libraries.
Ying Wangd6b1d612013-04-15 17:32:21 -070085# They are list of "<module_name>:<installed_file>:lib1,lib2...".
Ying Wang9485a572013-02-22 14:32:30 -080086TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES :=
87HOST_DEPENDENCIES_ON_SHARED_LIBRARIES :=
88
Ying Wangae25ec12012-06-19 10:40:37 -070089# Generated class file names for Android resource.
90# They are escaped and quoted so can be passed safely to a bash command.
91ANDROID_RESOURCE_GENERATED_CLASSES := 'R.class' 'R$$*.class' 'Manifest.class' 'Manifest$$*.class'
92
The Android Open Source Project88b60792009-03-03 19:28:42 -080093###########################################################
94## Debugging; prints a variable list to stdout
95###########################################################
96
97# $(1): variable name list, not variable values
98define print-vars
99$(foreach var,$(1), \
100 $(info $(var):) \
101 $(foreach word,$($(var)), \
102 $(info $(space)$(space)$(word)) \
103 ) \
104 )
105endef
106
107###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700108## Evaluates to true if the string contains the word true,
109## and empty otherwise
110## $(1): a var to test
111###########################################################
112
113define true-or-empty
114$(filter true, $(1))
115endef
116
117
118###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800119## Retrieve the directory of the current makefile
120###########################################################
121
122# Figure out where we are.
123define my-dir
Dave Bortb3926412009-05-19 16:12:22 -0700124$(strip \
Ying Wang68f1c772012-04-23 21:29:18 -0700125 $(eval LOCAL_MODULE_MAKEFILE := $$(lastword $$(MAKEFILE_LIST))) \
126 $(if $(filter $(CLEAR_VARS),$(LOCAL_MODULE_MAKEFILE)), \
Dave Bortb3926412009-05-19 16:12:22 -0700127 $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
128 , \
Ying Wang68f1c772012-04-23 21:29:18 -0700129 $(patsubst %/,%,$(dir $(LOCAL_MODULE_MAKEFILE))) \
Dave Bortb3926412009-05-19 16:12:22 -0700130 ) \
131 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800132endef
133
134###########################################################
135## Retrieve a list of all makefiles immediately below some directory
136###########################################################
137
138define all-makefiles-under
139$(wildcard $(1)/*/Android.mk)
140endef
141
142###########################################################
143## Look under a directory for makefiles that don't have parent
144## makefiles.
145###########################################################
146
147# $(1): directory to search under
148# Ignores $(1)/Android.mk
149define first-makefiles-under
Joe Onoratodc1a7282009-08-04 15:58:26 -0400150$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
151 --mindepth=2 $(1) Android.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800152endef
153
154###########################################################
155## Retrieve a list of all makefiles immediately below your directory
156###########################################################
157
158define all-subdir-makefiles
159$(call all-makefiles-under,$(call my-dir))
160endef
161
162###########################################################
163## Look in the named list of directories for makefiles,
164## relative to the current directory.
165###########################################################
166
167# $(1): List of directories to look for under this directory
168define all-named-subdir-makefiles
Chih-Wei Huange73c4bb2011-01-16 18:31:29 +0800169$(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800170endef
171
172###########################################################
173## Find all of the java files under the named directories.
174## Meant to be used like:
175## SRC_FILES := $(call all-java-files-under,src tests)
176###########################################################
177
178define all-java-files-under
179$(patsubst ./%,%, \
180 $(shell cd $(LOCAL_PATH) ; \
Conley Owensf4357392012-10-02 10:32:00 -0700181 find -L $(1) -name "*.java" -and -not -name ".*") \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800182 )
183endef
184
185###########################################################
186## Find all of the java files from here. Meant to be used like:
187## SRC_FILES := $(call all-subdir-java-files)
188###########################################################
189
190define all-subdir-java-files
191$(call all-java-files-under,.)
192endef
193
194###########################################################
195## Find all of the c files under the named directories.
196## Meant to be used like:
197## SRC_FILES := $(call all-c-files-under,src tests)
198###########################################################
199
200define all-c-files-under
201$(patsubst ./%,%, \
202 $(shell cd $(LOCAL_PATH) ; \
Conley Owensf4357392012-10-02 10:32:00 -0700203 find -L $(1) -name "*.c" -and -not -name ".*") \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800204 )
205endef
206
207###########################################################
208## Find all of the c files from here. Meant to be used like:
209## SRC_FILES := $(call all-subdir-c-files)
210###########################################################
211
212define all-subdir-c-files
213$(call all-c-files-under,.)
214endef
215
216###########################################################
217## Find all files named "I*.aidl" under the named directories,
218## which must be relative to $(LOCAL_PATH). The returned list
219## is relative to $(LOCAL_PATH).
220###########################################################
221
222define all-Iaidl-files-under
223$(patsubst ./%,%, \
224 $(shell cd $(LOCAL_PATH) ; \
Conley Owensf4357392012-10-02 10:32:00 -0700225 find -L $(1) -name "I*.aidl" -and -not -name ".*") \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800226 )
227endef
228
229###########################################################
230## Find all of the "I*.aidl" files under $(LOCAL_PATH).
231###########################################################
232
233define all-subdir-Iaidl-files
234$(call all-Iaidl-files-under,.)
235endef
236
237###########################################################
Bjorn Bringerta89c9902010-02-02 17:36:20 +0000238## Find all of the logtags files under the named directories.
239## Meant to be used like:
240## SRC_FILES := $(call all-logtags-files-under,src)
241###########################################################
242
243define all-logtags-files-under
244$(patsubst ./%,%, \
245 $(shell cd $(LOCAL_PATH) ; \
Conley Owensf4357392012-10-02 10:32:00 -0700246 find -L $(1) -name "*.logtags" -and -not -name ".*") \
Bjorn Bringerta89c9902010-02-02 17:36:20 +0000247 )
248endef
249
250###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700251## Find all of the .proto files under the named directories.
252## Meant to be used like:
253## SRC_FILES := $(call all-proto-files-under,src)
254###########################################################
255
256define all-proto-files-under
257$(patsubst ./%,%, \
258 $(shell cd $(LOCAL_PATH) ; \
Conley Owensf4357392012-10-02 10:32:00 -0700259 find -L $(1) -name "*.proto" -and -not -name ".*") \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700260 )
261endef
262
263###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700264## Find all of the RenderScript files under the named directories.
265## Meant to be used like:
266## SRC_FILES := $(call all-renderscript-files-under,src)
267###########################################################
268
269define all-renderscript-files-under
270$(patsubst ./%,%, \
271 $(shell cd $(LOCAL_PATH) ; \
Stephen Hinesd2637572012-10-11 22:08:57 -0700272 find -L $(1) \( -name "*.rs" -or -name "*.fs" \) -and -not -name ".*") \
Ying Wang0bd59a02010-07-15 17:17:52 -0700273 )
274endef
275
276###########################################################
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800277## Find all of the html files under the named directories.
278## Meant to be used like:
279## SRC_FILES := $(call all-html-files-under,src tests)
280###########################################################
281
282define all-html-files-under
283$(patsubst ./%,%, \
284 $(shell cd $(LOCAL_PATH) ; \
Conley Owensf4357392012-10-02 10:32:00 -0700285 find -L $(1) -name "*.html" -and -not -name ".*") \
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800286 )
287endef
288
289###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800290## Find all of the html files from here. Meant to be used like:
291## SRC_FILES := $(call all-subdir-html-files)
292###########################################################
293
294define all-subdir-html-files
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800295$(call all-html-files-under,.)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800296endef
297
298###########################################################
299## Find all of the files matching pattern
300## SRC_FILES := $(call find-subdir-files, <pattern>)
301###########################################################
302
303define find-subdir-files
Conley Owensf4357392012-10-02 10:32:00 -0700304$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find -L $(1)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800305endef
306
307###########################################################
308# find the files in the subdirectory $1 of LOCAL_DIR
309# matching pattern $2, filtering out files $3
310# e.g.
311# SRC_FILES += $(call find-subdir-subdir-files, \
312# css, *.cpp, DontWantThis.cpp)
313###########################################################
314
315define find-subdir-subdir-files
316$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
Conley Owensf4357392012-10-02 10:32:00 -0700317 $(LOCAL_PATH) ; find -L $(1) -maxdepth 1 -name $(2))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800318endef
319
320###########################################################
321## Find all of the files matching pattern
322## SRC_FILES := $(call all-subdir-java-files)
323###########################################################
324
325define find-subdir-assets
326$(if $(1),$(patsubst ./%,%, \
Ying Wang6ab5d6a2011-08-10 16:05:51 -0700327 $(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -not -name '.*' -and -type f -and -not -type l ; fi)), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800328 $(warning Empty argument supplied to find-subdir-assets) \
329)
330endef
331
332###########################################################
333## Find various file types in a list of directories relative to $(LOCAL_PATH)
334###########################################################
335
336define find-other-java-files
337 $(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
338endef
339
340define find-other-html-files
341 $(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
342endef
343
344###########################################################
345## Scan through each directory of $(1) looking for files
346## that match $(2) using $(wildcard). Useful for seeing if
347## a given directory or one of its parents contains
348## a particular file. Returns the first match found,
349## starting furthest from the root.
350###########################################################
351
352define find-parent-file
353$(strip \
Ying Wanga67ce692011-03-03 13:29:38 -0800354 $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800355 $(if $(_fpf),$(_fpf), \
356 $(if $(filter-out ./ .,$(1)), \
357 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
358 ) \
359 ) \
360)
361endef
362
363###########################################################
364## Function we can evaluate to introduce a dynamic dependency
365###########################################################
366
367define add-dependency
368$(1): $(2)
369endef
370
371###########################################################
372## Set up the dependencies for a prebuilt target
373## $(call add-prebuilt-file, srcfile, [targetclass])
374###########################################################
375
376define add-prebuilt-file
377 $(eval $(include-prebuilt))
378endef
379
380define include-prebuilt
381 include $$(CLEAR_VARS)
382 LOCAL_SRC_FILES := $(1)
383 LOCAL_BUILT_MODULE_STEM := $(1)
384 LOCAL_MODULE_SUFFIX := $$(suffix $(1))
385 LOCAL_MODULE := $$(basename $(1))
386 LOCAL_MODULE_CLASS := $(2)
387 include $$(BUILD_PREBUILT)
388endef
389
390###########################################################
391## do multiple prebuilts
392## $(call target class, files ...)
393###########################################################
394
395define add-prebuilt-files
396 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
397endef
398
399
400
401###########################################################
402## The intermediates directory. Where object files go for
403## a given target. We could technically get away without
404## the "_intermediates" suffix on the directory, but it's
405## nice to be able to grep for that string to find out if
406## anyone's abusing the system.
407###########################################################
408
409# $(1): target class, like "APPS"
410# $(2): target name, like "NotePad"
411# $(3): if non-empty, this is a HOST target.
412# $(4): if non-empty, force the intermediates to be COMMON
413define intermediates-dir-for
414$(strip \
415 $(eval _idfClass := $(strip $(1))) \
416 $(if $(_idfClass),, \
417 $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
418 $(eval _idfName := $(strip $(2))) \
419 $(if $(_idfName),, \
420 $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
421 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
Ying Wanga83940f2010-09-24 18:09:04 -0700422 $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800423 $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
424 , \
425 $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
426 ) \
427 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
428)
429endef
430
431# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
432# to determine the intermediates directory.
433#
434# $(1): if non-empty, force the intermediates to be COMMON
435define local-intermediates-dir
436$(strip \
437 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
438 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
439 $(if $(strip $(LOCAL_MODULE)),, \
440 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
441 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
442)
443endef
444
445###########################################################
446## Convert "path/to/libXXX.so" to "-lXXX".
447## Any "path/to/libXXX.a" elements pass through unchanged.
448###########################################################
449
450define normalize-libraries
451$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
452$(filter-out %.so,$(1))
453endef
454
455# TODO: change users to call the common version.
456define normalize-host-libraries
457$(call normalize-libraries,$(1))
458endef
459
460define normalize-target-libraries
461$(call normalize-libraries,$(1))
462endef
463
464###########################################################
465## Convert a list of short module names (e.g., "framework", "Browser")
466## into the list of files that are built for those modules.
467## NOTE: this won't return reliable results until after all
468## sub-makefiles have been included.
469## $(1): target list
470###########################################################
471
472define module-built-files
473$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
474endef
475
476###########################################################
477## Convert a list of short modules names (e.g., "framework", "Browser")
478## into the list of files that are installed for those modules.
479## NOTE: this won't return reliable results until after all
480## sub-makefiles have been included.
481## $(1): target list
482###########################################################
483
484define module-installed-files
485$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
486endef
487
488###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700489## Convert a list of short modules names (e.g., "framework", "Browser")
490## into the list of files that should be used when linking
491## against that module as a public API.
492## TODO: Allow this for more than JAVA_LIBRARIES modules
493## NOTE: this won't return reliable results until after all
494## sub-makefiles have been included.
495## $(1): target list
496###########################################################
497
498define module-stubs-files
499$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
500endef
501
502###########################################################
503## Evaluates to the timestamp file for a doc module, which
504## is the dependency that should be used.
505## $(1): doc module
506###########################################################
507
508define doc-timestamp-for
509$(OUT_DOCS)/$(strip $(1))-timestamp
510endef
511
512
513###########################################################
Ying Wang912f8282010-09-28 17:27:56 -0700514## Convert "core ext framework" to "out/.../javalib.jar ..."
The Android Open Source Project88b60792009-03-03 19:28:42 -0800515## $(1): library list
516## $(2): Non-empty if IS_HOST_MODULE
517###########################################################
518
519# $(1): library name
520# $(2): Non-empty if IS_HOST_MODULE
521define _java-lib-dir
522$(call intermediates-dir-for, \
Ying Wang912f8282010-09-28 17:27:56 -0700523 JAVA_LIBRARIES,$(1),$(2),COMMON)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800524endef
525
526# $(1): library name
527# $(2): Non-empty if IS_HOST_MODULE
528define _java-lib-full-classes.jar
Ying Wang912f8282010-09-28 17:27:56 -0700529$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800530endef
531
532# $(1): library name list
533# $(2): Non-empty if IS_HOST_MODULE
534define java-lib-files
535$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
536endef
537
538# $(1): library name
The Android Open Source Project88b60792009-03-03 19:28:42 -0800539# $(2): Non-empty if IS_HOST_MODULE
540define _java-lib-full-dep
Ying Wang45150f82013-02-27 15:23:42 -0800541$(call _java-lib-dir,$(1),$(2))/$(if $(2),javalib,classes)$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800542endef
543
544# $(1): library name list
545# $(2): Non-empty if IS_HOST_MODULE
546define java-lib-deps
547$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
548endef
549
550###########################################################
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400551## Run rot13 on a string
552## $(1): the string. Must be one line.
553###########################################################
554define rot13
555$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
556endef
557
558
559###########################################################
560## Returns true if $(1) and $(2) are equal. Returns
561## the empty string if they are not equal.
562###########################################################
563define streq
564$(strip $(if $(strip $(1)),\
565 $(if $(strip $(2)),\
566 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
567 ),\
568 $(if $(strip $(2)),\
569 ,\
570 true)\
571 ))
572endef
573
574###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800575## Convert "a b c" into "a:b:c"
576###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800577define normalize-path-list
578$(subst $(space),:,$(strip $(1)))
579endef
580
581###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700582## Read the word out of a colon-separated list of words.
583## This has the same behavior as the built-in function
584## $(word n,str).
585##
586## The individual words may not contain spaces.
587##
588## $(1): 1 based index
589## $(2): value of the form a:b:c...
590###########################################################
591
592define word-colon
593$(word $(1),$(subst :,$(space),$(2)))
594endef
595
596###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800597## Convert "a=b c= d e = f" into "a=b c=d e=f"
598##
599## $(1): list to collapse
600## $(2): if set, separator word; usually "=", ":", or ":="
601## Defaults to "=" if not set.
602###########################################################
603
604define collapse-pairs
605$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
606$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
607 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
608endef
609
The Android Open Source Project88b60792009-03-03 19:28:42 -0800610###########################################################
Ying Wang7e8d4422011-06-17 17:05:35 -0700611## Given a list of pairs, if multiple pairs have the same
612## first components, keep only the first pair.
613##
614## $(1): list of pairs
615## $(2): the separator word, such as ":", "=", etc.
616define uniq-pairs-by-first-component
617$(eval _upbfc_fc_set :=)\
618$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
619 $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
620 $(eval _upbfc_fc_set += $(_first)))))\
621$(eval _upbfc_fc_set :=)\
622$(eval _first:=)
623endef
624
625###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800626## MODULE_TAG set operations
627###########################################################
628
629# Given a list of tags, return the targets that specify
630# any of those tags.
631# $(1): tag list
632define modules-for-tag-list
633$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
634endef
635
636# Same as modules-for-tag-list, but operates on
637# ALL_MODULE_NAME_TAGS.
638# $(1): tag list
639define module-names-for-tag-list
640$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
641endef
642
643# Given an accept and reject list, find the matching
644# set of targets. If a target has multiple tags and
645# any of them are rejected, the target is rejected.
646# Reject overrides accept.
647# $(1): list of tags to accept
648# $(2): list of tags to reject
649#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
Jean-Baptiste Queru75127b72010-01-07 11:44:22 -0800650#TODO(jbq): as of 20100106 nobody uses the second parameter
The Android Open Source Project88b60792009-03-03 19:28:42 -0800651define get-tagged-modules
652$(filter-out \
653 $(call modules-for-tag-list,$(2)), \
654 $(call modules-for-tag-list,$(1)))
655endef
656
Joe Onorato64d85d02009-04-09 19:31:12 -0700657###########################################################
658## Append a leaf to a base path. Properly deals with
659## base paths ending in /.
660##
661## $(1): base path
662## $(2): leaf path
663###########################################################
664
665define append-path
666$(subst //,/,$(1)/$(2))
667endef
668
The Android Open Source Project88b60792009-03-03 19:28:42 -0800669
670###########################################################
671## Package filtering
672###########################################################
673
674# Given a list of installed modules (short or long names)
675# return a list of the packages (yes, .apk packages, not
676# modules in general) that are overridden by this list and,
677# therefore, should not be installed.
678# $(1): mixed list of installed modules
679# TODO: This is fragile; find a reliable way to get this information.
680define _get-package-overrides
681 $(eval ### Discard any words containing slashes, unless they end in .apk, \
682 ### in which case trim off the directory component and the suffix. \
683 ### If there are no slashes, keep the entire word.)
684 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
685 $(eval _gpo_names := \
686 $(filter %.apk,$(_gpo_names)) \
687 $(filter-out %@@@ @@@%,$(_gpo_names)))
688 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
689 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
690
691 $(eval ### Remove any remaining words that contain dots.)
692 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
693 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
694
695 $(eval ### Now we have a list of any words that could possibly refer to \
696 ### packages, although there may be words that do not. Only \
697 ### real packages will be present under PACKAGES.*, though.)
698 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
699endef
700
701define get-package-overrides
Conley Owensd7a1a9b2011-12-22 09:46:19 -0800702$(sort $(strip $(call _get-package-overrides,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800703endef
704
705###########################################################
706## Output the command lines, or not
707###########################################################
708
709ifeq ($(strip $(SHOW_COMMANDS)),)
710define pretty
711@echo $1
712endef
713hide := @
714else
715define pretty
716endef
717hide :=
718endif
719
720###########################################################
721## Dump the variables that are associated with targets
722###########################################################
723
724define dump-module-variables
725@echo all_dependencies=$^
726@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
727@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
728@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
729@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
730@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
731@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
732@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
733@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
734@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
735@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
Brian Carlstromf184a0f2010-02-01 11:13:32 -0800736@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800737@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
738@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
739@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
740@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
741@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
Jeff Brown703e7c62011-02-04 20:15:00 -0800742@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800743endef
744
745###########################################################
746## Commands for using sed to replace given variable values
747###########################################################
748
749define transform-variables
750@mkdir -p $(dir $@)
751@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
752$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
753$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
754endef
755
756
757###########################################################
758## Commands for munging the dependency files GCC generates
759###########################################################
Ying Wangc23f4ef2012-09-07 17:04:06 -0700760# $(1): the input .d file
761# $(2): the output .P file
762define transform-d-to-p-args
763$(hide) cp $(1) $(2); \
764 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
765 -e '/^$$/ d' -e 's/$$/ :/' < $(1) >> $(2); \
766 rm -f $(1)
767endef
The Android Open Source Project88b60792009-03-03 19:28:42 -0800768
769define transform-d-to-p
Ying Wangc23f4ef2012-09-07 17:04:06 -0700770$(call transform-d-to-p-args,$(@:%.o=%.d),$(@:%.o=%.P))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800771endef
772
773###########################################################
774## Commands for running lex
775###########################################################
776
777define transform-l-to-cpp
778@mkdir -p $(dir $@)
779@echo "Lex: $(PRIVATE_MODULE) <= $<"
780$(hide) $(LEX) -o$@ $<
781endef
782
783###########################################################
784## Commands for running yacc
785##
786## Because the extension of c++ files can change, the
787## extension must be specified in $1.
788## E.g, "$(call transform-y-to-cpp,.cpp)"
789###########################################################
790
791define transform-y-to-cpp
792@mkdir -p $(dir $@)
793@echo "Yacc: $(PRIVATE_MODULE) <= $<"
794$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
795touch $(@:$1=$(YACC_HEADER_SUFFIX))
796echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
797echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
798cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
799echo '#endif' >> $(@:$1=.h)
800rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
801endef
802
Ying Wang0bd59a02010-07-15 17:17:52 -0700803###########################################################
Tim Murraya7aa8002012-10-29 16:06:00 -0700804## Commands to compile RenderScript to Java
Ying Wang0bd59a02010-07-15 17:17:52 -0700805###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700806
807define transform-renderscripts-to-java-and-bc
808@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
809$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
810$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
811$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
Ying Wang7d83ef82011-05-25 17:16:22 -0700812$(hide) $(PRIVATE_RS_CC) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700813 -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
814 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
Ying Wang24e1c012010-10-07 18:57:57 -0700815 -d $(PRIVATE_RS_OUTPUT_DIR) \
816 -a $@ -MD \
Stephen Hinesc963eae2011-08-10 13:53:05 -0700817 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
Stephen Hines914f7a22011-12-06 18:43:24 -0800818 $(PRIVATE_RS_FLAGS) \
Ying Wang51280272010-09-01 13:28:52 -0700819 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700820 $(PRIVATE_RS_SOURCE_FILES)
Ying Wang0bd59a02010-07-15 17:17:52 -0700821$(hide) mkdir -p $(dir $@)
822$(hide) touch $@
823endef
824
Stephen Hinese719f282012-11-28 16:52:41 -0800825define transform-bc-to-so
Stephen Hines9ac9b532013-02-27 00:51:08 -0800826@echo "Renderscript compatibility: $(notdir $@) <= $(notdir $<)"
Stephen Hinese719f282012-11-28 16:52:41 -0800827$(hide) mkdir -p $(dir $@)
Stephen Hinesf6925132012-12-17 14:23:14 -0800828$(hide) $(BCC_COMPAT) -O3 -o $(dir $@)/$(notdir $(<:.bc=.o)) -fPIC -shared \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800829 -rt-path $(RS_PREBUILT_CLCORE) -mtriple $(RS_TRIPLE) $<
Stephen Hines7d6ec712012-12-13 19:24:50 -0800830$(hide) $(PRIVATE_CXX) -shared -Wl,-soname,$(notdir $@) -nostdlib \
Stephen Hinesf6925132012-12-17 14:23:14 -0800831 -Wl,-rpath,\$$ORIGIN/../lib \
Stephen Hines9541f582013-01-18 16:27:23 -0800832 $(dir $@)/$(notdir $(<:.bc=.o)) \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800833 $(RS_PREBUILT_COMPILER_RT) \
Stephen Hines9541f582013-01-18 16:27:23 -0800834 -o $@ -L prebuilts/gcc/ \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800835 -L $(TARGET_OUT_INTERMEDIATE_LIBRARIES) $(RS_PREBUILT_LIBPATH) \
Stephen Hines8db4cce2013-03-27 16:51:38 -0700836 -lRSSupport -lm -lc
Stephen Hinese719f282012-11-28 16:52:41 -0800837endef
838
Tim Murraya7aa8002012-10-29 16:06:00 -0700839###########################################################
840## Commands to compile RenderScript to C++
841###########################################################
842
843define transform-renderscripts-to-cpp-and-bc
844@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
845$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
846$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/
847$(hide) $(PRIVATE_RS_CC) \
848 -o $(PRIVATE_RS_OUTPUT_DIR)/ \
849 -d $(PRIVATE_RS_OUTPUT_DIR) \
850 -a $@ -MD \
851 -reflect-c++ \
852 $(PRIVATE_RS_FLAGS) \
853 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
854 $(PRIVATE_RS_SOURCE_FILES)
855$(hide) mkdir -p $(dir $@)
856$(hide) touch $@
857endef
858
The Android Open Source Project88b60792009-03-03 19:28:42 -0800859
860###########################################################
861## Commands for running aidl
862###########################################################
863
864define transform-aidl-to-java
865@mkdir -p $(dir $@)
866@echo "Aidl: $(PRIVATE_MODULE) <= $<"
867$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
868endef
869#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
870
871
Doug Zongker9bd49622009-11-30 14:28:59 -0800872###########################################################
873## Commands for running java-event-log-tags.py
874###########################################################
875
876define transform-logtags-to-java
877@mkdir -p $(dir $@)
878@echo "logtags: $@ <= $<"
Doug Zongkerabfbbe22010-02-16 14:32:08 -0800879$(hide) $(JAVATAGS) -o $@ $^
Doug Zongker9bd49622009-11-30 14:28:59 -0800880endef
881
The Android Open Source Project88b60792009-03-03 19:28:42 -0800882
883###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700884## Commands for running protoc to compile .proto into .java
885###########################################################
886
887define transform-proto-to-java
888@mkdir -p $(dir $@)
889@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
890@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
891@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
Ulas Kirazci28b46fc2013-07-24 14:32:14 -0700892$(hide) $(PROTOC) \
893 $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)="$(PRIVATE_PROTO_JAVA_OUTPUT_PARAMS):$(PRIVATE_PROTO_JAVA_OUTPUT_DIR)" \
Bjorn Bringert20f5efd2011-10-18 16:08:27 +0100894 $(PRIVATE_PROTOC_FLAGS) \
Ulas Kirazci28b46fc2013-07-24 14:32:14 -0700895 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
896 $(PRIVATE_PROTO_SRC_FILES)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700897$(hide) touch $@
898endef
899
900######################################################################
901## Commands for running protoc to compile .proto into .pb.cc and .pb.h
902######################################################################
903define transform-proto-to-cc
904@mkdir -p $(dir $@)
905@echo "Protoc: $@ <= $<"
906$(hide) $(PROTOC) \
907 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ying Wang33c0d952010-11-05 11:30:58 -0700908 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700909 --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
910endef
911
912
913###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800914## Commands for running gcc to compile a C++ file
915###########################################################
916
917define transform-cpp-to-o
918@mkdir -p $(dir $@)
919@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
920$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700921 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700922 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700923 $(addprefix -isystem ,\
924 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
925 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700926 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700927 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800928 -c \
929 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700930 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
931 $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800932 $(PRIVATE_ARM_CFLAGS) \
933 ) \
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700934 $(PRIVATE_RTTI_FLAG) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800935 $(PRIVATE_CFLAGS) \
936 $(PRIVATE_CPPFLAGS) \
937 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800938 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800939$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800940endef
941
942
943###########################################################
944## Commands for running gcc to compile a C file
945###########################################################
946
947# $(1): extra flags
948define transform-c-or-s-to-o-no-deps
949@mkdir -p $(dir $@)
950$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -0700951 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700952 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700953 $(addprefix -isystem ,\
954 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
955 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700956 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700957 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800958 -c \
959 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700960 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800961 $(PRIVATE_ARM_CFLAGS) \
962 ) \
Ying Wang65d78522012-08-10 16:30:42 -0700963 $(1) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800964 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -0800965endef
966
967define transform-c-to-o-no-deps
968@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
Ying Wang7429e212012-08-15 10:59:10 -0700969$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800970endef
971
972define transform-s-to-o-no-deps
973@echo "target asm: $(PRIVATE_MODULE) <= $<"
974$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
975endef
976
977define transform-c-to-o
978$(transform-c-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800979$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980endef
981
982define transform-s-to-o
983$(transform-s-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800984$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800985endef
986
987###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200988## Commands for running gcc to compile an Objective-C file
989## This should never happen for target builds but this
990## will error at build time.
991###########################################################
992
993define transform-m-to-o-no-deps
994@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
Ying Wang65d78522012-08-10 16:30:42 -0700995$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200996endef
997
998define transform-m-to-o
999$(transform-m-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001000$(transform-d-to-p)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001001endef
1002
1003###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001004## Commands for running gcc to compile a host C++ file
1005###########################################################
1006
1007define transform-host-cpp-to-o
1008@mkdir -p $(dir $@)
1009@echo "host C++: $(PRIVATE_MODULE) <= $<"
1010$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -07001011 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001012 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001013 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001014 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001015 $(filter-out $(PRIVATE_C_INCLUDES), \
1016 $(HOST_PROJECT_INCLUDES) \
1017 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001018 -c \
1019 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1020 $(HOST_GLOBAL_CFLAGS) \
1021 $(HOST_GLOBAL_CPPFLAGS) \
1022 ) \
1023 $(PRIVATE_CFLAGS) \
1024 $(PRIVATE_CPPFLAGS) \
1025 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001026 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001027$(transform-d-to-p)
1028endef
1029
1030
1031###########################################################
1032## Commands for running gcc to compile a host C file
1033###########################################################
1034
1035# $(1): extra flags
1036define transform-host-c-or-s-to-o-no-deps
1037@mkdir -p $(dir $@)
1038$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -07001039 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001040 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001041 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001042 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001043 $(filter-out $(PRIVATE_C_INCLUDES), \
1044 $(HOST_PROJECT_INCLUDES) \
1045 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001046 -c \
1047 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1048 $(HOST_GLOBAL_CFLAGS) \
1049 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001050 $(1) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001051 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001052endef
1053
1054define transform-host-c-to-o-no-deps
1055@echo "host C: $(PRIVATE_MODULE) <= $<"
Ying Wang7429e212012-08-15 10:59:10 -07001056$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001057endef
1058
1059define transform-host-s-to-o-no-deps
1060@echo "host asm: $(PRIVATE_MODULE) <= $<"
1061$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1062endef
1063
1064define transform-host-c-to-o
1065$(transform-host-c-to-o-no-deps)
1066$(transform-d-to-p)
1067endef
1068
1069define transform-host-s-to-o
1070$(transform-host-s-to-o-no-deps)
1071$(transform-d-to-p)
1072endef
1073
1074###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001075## Commands for running gcc to compile a host Objective-C file
1076###########################################################
1077
1078define transform-host-m-to-o-no-deps
1079@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
Ying Wang65d78522012-08-10 16:30:42 -07001080$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001081endef
1082
David 'Digit' Turner5ca286d2011-02-11 16:19:31 +01001083define transform-host-m-to-o
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001084$(transform-host-m-to-o-no-deps)
1085$(transform-d-to-p)
1086endef
1087
1088###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001089## Commands for running ar
1090###########################################################
1091
Ying Wange4b24eb2010-05-27 11:55:39 -07001092define _concat-if-arg2-not-empty
1093$(if $(2),$(hide) $(1) $(2))
1094endef
1095
1096# Split long argument list into smaller groups and call the command repeatedly
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001097# Call the command at least once even if there are no arguments, as otherwise
1098# the output file won't be created.
Ying Wange4b24eb2010-05-27 11:55:39 -07001099#
1100# $(1): the command without arguments
1101# $(2): the arguments
1102define split-long-arguments
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001103$(hide) $(1) $(wordlist 1,500,$(2))
Ying Wange4b24eb2010-05-27 11:55:39 -07001104$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1105$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1106$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1107$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1108$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1109$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1110endef
1111
Ying Wanga02d3d92011-01-27 18:48:00 -08001112# $(1): the full path of the source static library.
1113define _extract-and-include-single-target-whole-static-lib
1114@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1115$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1116 rm -rf $$ldir; \
1117 mkdir -p $$ldir; \
1118 filelist=; \
1119 for f in `$(TARGET_AR) t $(1)`; do \
1120 $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \
1121 filelist="$$filelist $$ldir/$$f"; \
1122 done ; \
1123 $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1124
1125endef
1126
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001127define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -07001128$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001129 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
Dima Zavin46e9bec2009-05-27 19:41:07 -07001130endef
1131
The Android Open Source Project88b60792009-03-03 19:28:42 -08001132# Explicitly delete the archive first so that ar doesn't
1133# try to add to an existing archive.
1134define transform-o-to-static-lib
1135@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001136@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001137$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -07001138@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001139$(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001140endef
1141
1142###########################################################
1143## Commands for running host ar
1144###########################################################
1145
Ying Wanga02d3d92011-01-27 18:48:00 -08001146# $(1): the full path of the source static library.
1147define _extract-and-include-single-host-whole-static-lib
1148@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1149$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1150 rm -rf $$ldir; \
1151 mkdir -p $$ldir; \
1152 filelist=; \
Jeff Hamilton293f9392011-11-18 17:15:25 -06001153 for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
Ying Wanga02d3d92011-01-27 18:48:00 -08001154 $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1155 filelist="$$filelist $$ldir/$$f"; \
1156 done ; \
1157 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1158
1159endef
1160
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001161define extract-and-include-host-whole-static-libs
1162$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001163 $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001164endef
1165
The Android Open Source Project88b60792009-03-03 19:28:42 -08001166# Explicitly delete the archive first so that ar doesn't
1167# try to add to an existing archive.
1168define transform-host-o-to-static-lib
1169@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001170@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001171$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -07001172@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001173$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001174endef
1175
1176
1177###########################################################
1178## Commands for running gcc to link a shared library or package
1179###########################################################
1180
1181# ld just seems to be so finicky with command order that we allow
1182# it to be overriden en-masse see combo/linux-arm.make for an example.
1183ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1184define transform-host-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001185$(hide) $(PRIVATE_CXX) \
Ying Wang80e6cce2011-01-24 23:25:36 -08001186 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001187 -Wl,-rpath,\$$ORIGIN/../lib \
1188 -shared -Wl,-soname,$(notdir $@) \
1189 $(PRIVATE_LDFLAGS) \
1190 $(HOST_GLOBAL_LD_DIRS) \
1191 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1192 $(HOST_GLOBAL_LDFLAGS) \
1193 ) \
1194 $(PRIVATE_ALL_OBJECTS) \
1195 -Wl,--whole-archive \
1196 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1197 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001198 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001199 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001200 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001201 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1202 -o $@ \
1203 $(PRIVATE_LDLIBS)
1204endef
1205endif
1206
1207define transform-host-o-to-shared-lib
1208@mkdir -p $(dir $@)
1209@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001210$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001211endef
1212
1213define transform-host-o-to-package
1214@mkdir -p $(dir $@)
1215@echo "host Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001216$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001217endef
1218
1219
1220###########################################################
1221## Commands for running gcc to link a shared library or package
1222###########################################################
1223
1224#echo >$@.vers "{"; \
1225#echo >>$@.vers " global:"; \
1226#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1227#echo >>$@.vers " local:"; \
1228#echo >>$@.vers " *;"; \
1229#echo >>$@.vers "};"; \
1230
1231# -Wl,--version-script=$@.vers \
1232
1233# ld just seems to be so finicky with command order that we allow
1234# it to be overriden en-masse see combo/linux-arm.make for an example.
1235ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1236define transform-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001237$(hide) $(PRIVATE_CXX) \
Ying Wang1a081002010-07-13 14:55:47 -07001238 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001239 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1240 -Wl,-rpath,\$$ORIGIN/../lib \
1241 -shared -Wl,-soname,$(notdir $@) \
1242 $(PRIVATE_LDFLAGS) \
Ying Wang1a081002010-07-13 14:55:47 -07001243 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001244 $(PRIVATE_ALL_OBJECTS) \
1245 -Wl,--whole-archive \
Ying Wang80e6cce2011-01-24 23:25:36 -08001246 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001247 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001248 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001249 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001250 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001251 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1252 -o $@ \
1253 $(PRIVATE_LDLIBS)
1254endef
1255endif
1256
1257define transform-o-to-shared-lib
1258@mkdir -p $(dir $@)
1259@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001260$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001261endef
1262
1263define transform-o-to-package
1264@mkdir -p $(dir $@)
1265@echo "target Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001266$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001267endef
1268
1269
1270###########################################################
1271## Commands for filtering a target executable or library
1272###########################################################
1273
The Android Open Source Project88b60792009-03-03 19:28:42 -08001274define transform-to-stripped
1275@mkdir -p $(dir $@)
1276@echo "target Strip: $(PRIVATE_MODULE) ($@)"
Bruce Beare45ac4342010-06-24 14:02:00 -07001277$(hide) $(TARGET_STRIP_COMMAND)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001278endef
1279
The Android Open Source Project88b60792009-03-03 19:28:42 -08001280
1281###########################################################
1282## Commands for running gcc to link an executable
1283###########################################################
1284
1285ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1286define transform-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001287$(hide) $(PRIVATE_CXX) \
Ying Wangc6ffc002012-09-25 17:52:10 -07001288 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1289 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001290 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1291 -Wl,-rpath,\$$ORIGIN/../lib \
1292 $(PRIVATE_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001293 $(PRIVATE_ALL_OBJECTS) \
1294 -Wl,--whole-archive \
1295 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1296 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001297 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001298 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001299 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001300 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1301 -o $@ \
1302 $(PRIVATE_LDLIBS)
1303endef
1304endif
1305
1306define transform-o-to-executable
1307@mkdir -p $(dir $@)
1308@echo "target Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001309$(transform-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001310endef
1311
1312
1313###########################################################
1314## Commands for running gcc to link a statically linked
1315## executable. In practice, we only use this on arm, so
1316## the other platforms don't have the
1317## transform-o-to-static-executable defined
1318###########################################################
1319
1320ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1321define transform-o-to-static-executable-inner
1322endef
1323endif
1324
1325define transform-o-to-static-executable
1326@mkdir -p $(dir $@)
1327@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001328$(transform-o-to-static-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001329endef
1330
1331
1332###########################################################
1333## Commands for running gcc to link a host executable
1334###########################################################
1335
1336ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1337define transform-host-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001338$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001339 $(PRIVATE_ALL_OBJECTS) \
1340 -Wl,--whole-archive \
1341 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1342 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001343 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001344 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001345 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001346 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
Conley Owensd9e7d252011-11-10 09:57:40 -08001347 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1348 -Wl,-rpath,\$$ORIGIN/../lib \
1349 $(HOST_GLOBAL_LD_DIRS) \
1350 $(PRIVATE_LDFLAGS) \
1351 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1352 $(HOST_GLOBAL_LDFLAGS) \
1353 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001354 -o $@ \
1355 $(PRIVATE_LDLIBS)
1356endef
1357endif
1358
1359define transform-host-o-to-executable
1360@mkdir -p $(dir $@)
1361@echo "host Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001362$(transform-host-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001363endef
1364
1365
1366###########################################################
1367## Commands for running javac to make .class files
1368###########################################################
1369
1370#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1371#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1372
1373# TODO: Right now we generate the asset resources twice, first as part
1374# of generating the Java classes, then at the end when packaging the final
1375# assets. This should be changed to do one of two things: (1) Don't generate
1376# any resource files the first time, only create classes during that stage;
1377# or (2) Don't use the -c flag with the second stage, instead taking the
1378# resource files from the first stage as additional input. My original intent
1379# was to use approach (2), but this requires a little more work in the tool.
1380# Maybe we should just use approach (1).
1381
1382# This rule creates the R.java and Manifest.java files, both of which
Ying Wang4f1ab922011-03-15 13:19:30 -07001383# are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001384define create-resource-java-files
1385@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1386@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
Ying Wangc61d5932010-03-10 16:02:42 -08001387$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
Ying Wang4f1ab922011-03-15 13:19:30 -07001388 $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001389 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1390 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1391 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1392 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1393 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001394 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001395 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001396 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1397 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001398 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001399 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Ying Wang8c254822010-03-16 16:13:56 -07001400 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001401 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001402endef
1403
1404ifeq ($(HOST_OS),windows)
1405xlint_unchecked :=
1406else
Jeffrey Chyan7adbf972010-07-07 13:42:19 -05001407xlint_unchecked := -Xlint:unchecked
The Android Open Source Project88b60792009-03-03 19:28:42 -08001408endif
1409
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001410ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1411incremental_dex := --incremental
1412else
1413incremental_dex :=
1414endif
1415
The Android Open Source Project88b60792009-03-03 19:28:42 -08001416# emit-line, <word list>, <output file>
1417define emit-line
1418 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1419endef
1420
1421# dump-words-to-file, <word list>, <output file>
1422define dump-words-to-file
1423 @rm -f $(2)
1424 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1425 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1426 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1427 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1428 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1429 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1430 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1431 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1432 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1433 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1434 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1435 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1436 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1437 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1438 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1439 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1440 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1441 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1442 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1443 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
Jesse Wilson72c941a2010-05-04 16:33:49 -07001444 @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1445 @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1446 @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1447 @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1448 @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1449 @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001450endef
1451
1452# For a list of jar files, unzip them to a specified directory,
1453# but make sure that no META-INF files come along for the ride.
1454#
1455# $(1): files to unzip
1456# $(2): destination directory
1457define unzip-jar-files
1458 $(hide) for f in $(1); \
1459 do \
1460 if [ ! -f $$f ]; then \
1461 echo Missing file $$f; \
1462 exit 1; \
1463 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001464 unzip -qo $$f -d $(2); \
Ying Wang3a6f7582012-08-30 12:59:42 -07001465 done \
1466 $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,;rm -rf $(2)/META-INF)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001467endef
1468
Brian Carlstrom78269512010-12-10 12:10:24 -08001469# Common definition to invoke javac on the host and target.
1470#
1471# Some historical notes:
1472# - below we write the list of java files to java-source-list to avoid argument
1473# list length problems with Cygwin
1474# - we filter out duplicate java file names because eclipse's compiler
1475# doesn't like them.
1476#
1477# $(1): javac
1478# $(2): bootclasspath
1479define compile-java
Joe Onorato64d85d02009-04-09 19:31:12 -07001480$(hide) rm -f $@
1481$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001482$(hide) mkdir -p $(dir $@)
Joe Onorato64d85d02009-04-09 19:31:12 -07001483$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001484$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
Ying Wang015edd22011-01-20 15:01:56 -08001485$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001486$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Ying Wang015edd22011-01-20 15:01:56 -08001487 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001488fi
Ying Wang015edd22011-01-20 15:01:56 -08001489$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1490 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wange109a1d2011-12-12 17:52:03 -08001491$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1492 $(1) -encoding UTF-8 \
Brian Carlstrom78269512010-12-10 12:10:24 -08001493 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
Ying Wang057eba02012-10-18 10:54:49 -07001494 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001495 $(2) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001496 $(addprefix -classpath ,$(strip \
1497 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
Ying Wang057eba02012-10-18 10:54:49 -07001498 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001499 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001500 $(PRIVATE_JAVACFLAGS) \
Ying Wang015edd22011-01-20 15:01:56 -08001501 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
Ying Wange109a1d2011-12-12 17:52:03 -08001502 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1503fi
Joe Onorato0eccce92011-10-30 21:37:35 -07001504$(if $(PRIVATE_JAVA_LAYERS_FILE), $(hide) build/tools/java-layers.py \
1505 $(PRIVATE_JAVA_LAYERS_FILE) \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq,)
Ying Wang015edd22011-01-20 15:01:56 -08001506$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1507$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wang5758b8e2011-12-15 16:36:55 -08001508$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1509 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1510 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1511 | xargs rm -rf)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001512$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1513 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
Brian Carlstrom78269512010-12-10 12:10:24 -08001514endef
1515
1516define transform-java-to-classes.jar
1517@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1518$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001519endef
1520
Ying Wang015edd22011-01-20 15:01:56 -08001521# Override the above definitions if we want to do incremetal javac
1522ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1523define compile-java
1524$(hide) mkdir -p $(dir $@)
1525$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1526$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1527$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1528$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1529 newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1530 fi ; \
1531 find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1532 if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1533 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1534 fi
1535$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1536 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1537@echo "(Incremental) build source files:"
1538@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1539$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
Joe Onorato149dd912011-05-31 18:21:07 -07001540 $(1) -encoding UTF-8 \
Ying Wang015edd22011-01-20 15:01:56 -08001541 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
Ying Wang057eba02012-10-18 10:54:49 -07001542 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Ying Wang015edd22011-01-20 15:01:56 -08001543 $(2) \
1544 $(addprefix -classpath ,$(strip \
1545 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
Ying Wang057eba02012-10-18 10:54:49 -07001546 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Ying Wang015edd22011-01-20 15:01:56 -08001547 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1548 $(PRIVATE_JAVACFLAGS) \
1549 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1550 || ( exit 41 ) \
1551fi
1552$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1553$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1554$(hide) rm -f $@
Ying Wangae25ec12012-06-19 10:40:37 -07001555$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1556 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1557 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1558 | xargs rm -rf)
Ying Wang015edd22011-01-20 15:01:56 -08001559$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1560 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1561$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1562endef
1563
1564define transform-java-to-classes.jar
1565@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1566$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1567endef
1568endif # ENABLE_INCREMENTALJAVAC
1569
The Android Open Source Project88b60792009-03-03 19:28:42 -08001570define transform-classes.jar-to-emma
1571$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
Guang Zhu155afe32010-03-10 15:48:03 -08001572 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
Guang Zhu9cd3d8c2010-06-15 13:31:25 -07001573 $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001574endef
1575
1576#TODO: use a smaller -Xmx value for most libraries;
1577# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001578# Avoid the memory arguments on Windows, dx fails to load for some reason with them.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001579define transform-classes.jar-to-dex
1580@echo "target Dex: $(PRIVATE_MODULE)"
1581@mkdir -p $(dir $@)
Raphaelf6ff4c52009-08-18 14:43:32 -07001582$(hide) $(DX) \
Wink Saville29b3afa2012-01-30 15:30:10 -08001583 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001584 --dex --output=$@ \
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001585 $(incremental_dex) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001586 $(if $(NO_OPTIMIZE_DX), \
1587 --no-optimize) \
1588 $(if $(GENERATE_DEX_DEBUG), \
1589 --debug --verbose \
1590 --dump-to=$(@:.dex=.lst) \
1591 --dump-width=1000) \
1592 $(PRIVATE_DX_FLAGS) \
1593 $<
1594endef
1595
1596# Create a mostly-empty .jar file that we'll add to later.
1597# The MacOS jar tool doesn't like creating empty jar files,
1598# so we need to give it something.
1599define create-empty-package
1600@mkdir -p $(dir $@)
1601$(hide) touch $(dir $@)/dummy
1602$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1603$(hide) zip -qd $@ dummy
1604$(hide) rm $(dir $@)/dummy
1605endef
1606
1607#TODO: we kinda want to build different asset packages for
1608# different configurations, then combine them later (or something).
1609# Per-locale, etc.
1610# A list of dynamic and static parameters; build layers for
1611# dynamic params that lay over the static ones.
1612#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001613#Note that the version numbers are given to aapt as simple default
1614#values; applications can override these by explicitly stating
1615#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001616define add-assets-to-package
Ying Wangc61d5932010-03-10 16:02:42 -08001617$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
Ying Wang4f1ab922011-03-15 13:19:30 -07001618 $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
Dianne Hackborna0f464a2011-10-14 19:37:57 -07001619 $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001620 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1621 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1622 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1623 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001624 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1625 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Joe Onorato700b88e2010-10-05 17:33:58 -04001626 $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001627 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001628 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Jeff Hamiltonbb67d212010-02-05 22:36:42 -06001629 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001630 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001631 -F $@
1632endef
1633
The Android Open Source Project88b60792009-03-03 19:28:42 -08001634define add-jni-shared-libs-to-package
1635$(hide) rm -rf $(dir $@)lib
Jack Palevicha0ab29b2010-06-18 15:38:07 +08001636$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1637$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001638$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1639$(hide) rm -rf $(dir $@)lib
1640endef
1641
The Android Open Source Project88b60792009-03-03 19:28:42 -08001642#TODO: update the manifest to point to the dex file
1643define add-dex-to-package
Ying Wang957fea52010-09-23 11:48:38 -07001644$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
-b masterc3ccfee2013-01-23 16:54:32 -08001645$(hide) zip -qj $@ $(PRIVATE_DEX_FILE),\
Ying Wang6e7db382011-07-27 12:49:15 -07001646$(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \
1647cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \
-b masterc3ccfee2013-01-23 16:54:32 -08001648zip -qj $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001649endef
1650
Ying Wang85480622012-08-09 15:20:50 -07001651# Add java resources added by the current module.
1652#
The Android Open Source Project88b60792009-03-03 19:28:42 -08001653define add-java-resources-to-package
Ying Wang194a8ec2011-06-06 14:34:52 -07001654$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1655$(hide) jar uf $@ @$(dir $@)jar-arg-list
1656@rm -f $(dir $@)jar-arg-list
The Android Open Source Project88b60792009-03-03 19:28:42 -08001657endef
1658
Ying Wang85480622012-08-09 15:20:50 -07001659# Add java resources carried by static Java libraries.
1660#
1661define add-carried-java-resources
1662$(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \
1663 java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \
1664 | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \
1665 if [ -n "$$java_res_jar_flags" ] ; then \
1666 echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \
1667 jar uf $@ $$java_res_jar_flags; \
1668 fi; \
1669fi
1670endef
1671
The Android Open Source Project88b60792009-03-03 19:28:42 -08001672# Sign a package using the specified key/cert.
1673#
1674define sign-package
1675$(hide) mv $@ $@.unsigned
1676$(hide) java -jar $(SIGNAPK_JAR) \
Ying Wang31df0682012-11-13 10:55:28 -08001677 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) \
1678 $(PRIVATE_ADDITIONAL_CERTIFICATES) $@.unsigned $@.signed
The Android Open Source Project88b60792009-03-03 19:28:42 -08001679$(hide) mv $@.signed $@
1680endef
1681
1682# Align STORED entries of a package on 4-byte boundaries
1683# to make them easier to mmap.
1684#
1685define align-package
1686$(hide) mv $@ $@.unaligned
1687$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1688$(hide) mv $@.aligned $@
1689endef
1690
1691define install-dex-debug
1692$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1693 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1694 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1695 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1696 fi
1697$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1698 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1699 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1700 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1701 fi
1702endef
1703
1704# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1705# new prebuilt rules to work, we should change this to copy the
1706# resources to the out directory and then copy the resources.
1707
Brian Carlstrom78269512010-12-10 12:10:24 -08001708# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1709# in transform-java-to-classes for the sake of vm-tests.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001710define transform-host-java-to-package
1711@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Ying Wang015edd22011-01-20 15:01:56 -08001712$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Ying Wang194a8ec2011-06-06 14:34:52 -07001713$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001714endef
1715
1716###########################################################
1717## Obfuscate a jar file
1718###########################################################
1719
1720# PRIVATE_KEEP_FILE is a file containing a list of classes
1721# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1722# The module using this must depend on
1723# $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1724define obfuscate-jar
1725@echo "Obfuscate jar: $(notdir $@) ($@)"
1726@mkdir -p $(dir $@)
1727@rm -f $@
1728@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1729$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1730 $(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1731$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1732 -injars $< \
1733 -outjars $@ \
1734 -target 1.5 \
1735 -dontnote -dontwarn \
1736 -printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1737 -forceprocessing \
1738 -renamesourcefileattribute SourceFile \
1739 -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1740 -repackageclasses \
1741 -keepclassmembers "class * { public protected *; }" \
1742 @$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1743endef
1744
1745###########################################################
1746## Commands for copying files
1747###########################################################
1748
1749# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1750# $(1): source header
1751# $(2): destination header
1752define copy-one-header
1753$(2): $(1)
1754 @echo "Header: $$@"
1755 $$(copy-file-to-new-target-with-cp)
1756endef
1757
1758# Define a rule to copy a file. For use via $(eval).
1759# $(1): source file
1760# $(2): destination file
1761define copy-one-file
1762$(2): $(1) | $(ACP)
1763 @echo "Copy: $$@"
1764 $$(copy-file-to-target)
1765endef
1766
Joe Onoratoe44705a2012-05-17 17:12:04 -07001767# Copies many files.
1768# $(1): The files to copy. Each entry is a ':' separated src:dst pair
1769# Evaluates to the list of the dst files (ie suitable for a dependency list)
1770define copy-many-files
1771$(foreach f, $(1), $(strip \
1772 $(eval _cmf_tuple := $(subst :, ,$(f))) \
1773 $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \
1774 $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \
1775 $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \
1776 $(_cmf_dest)))
1777endef
1778
Ying Wang3ceecfa2012-05-14 14:39:00 -07001779# Copy the file only if it's a well-formed xml file. For use via $(eval).
1780# $(1): source file
1781# $(2): destination file, must end with .xml.
1782define copy-xml-file-checked
1783$(2): $(1) | $(ACP)
1784 @echo "Copy xml: $$@"
1785 $(hide) xmllint $$< >/dev/null # Don't print the xml file to stdout.
1786 $$(copy-file-to-target)
1787endef
1788
The Android Open Source Project88b60792009-03-03 19:28:42 -08001789# The -t option to acp and the -p option to cp is
1790# required for OSX. OSX has a ridiculous restriction
1791# where it's an error for a .a file's modification time
1792# to disagree with an internal timestamp, and this
1793# macro is used to install .a files (among other things).
1794
1795# Copy a single file from one place to another,
1796# preserving permissions and overwriting any existing
1797# file.
Ian Rogers76a6dc32012-10-01 16:36:23 -07001798# We disable the "-t" option for acp cannot handle
Ying Wang84ed6fa2011-01-18 17:21:20 -08001799# high resolution timestamp correctly on file systems like ext4.
1800# Therefore copy-file-to-target is the same as copy-file-to-new-target.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001801define copy-file-to-target
1802@mkdir -p $(dir $@)
Ying Wang84ed6fa2011-01-18 17:21:20 -08001803$(hide) $(ACP) -fp $< $@
The Android Open Source Project88b60792009-03-03 19:28:42 -08001804endef
1805
1806# The same as copy-file-to-target, but use the local
1807# cp command instead of acp.
1808define copy-file-to-target-with-cp
1809@mkdir -p $(dir $@)
1810$(hide) cp -fp $< $@
1811endef
1812
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001813# The same as copy-file-to-target, but use the zipalign tool to do so.
1814define copy-file-to-target-with-zipalign
1815@mkdir -p $(dir $@)
1816$(hide) $(ZIPALIGN) -f 4 $< $@
1817endef
1818
Doug Zongker1046d202009-08-06 13:02:19 -07001819# The same as copy-file-to-target, but strip out "# comment"-style
1820# comments (for config files and such).
1821define copy-file-to-target-strip-comments
1822@mkdir -p $(dir $@)
1823$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1824endef
1825
The Android Open Source Project88b60792009-03-03 19:28:42 -08001826# The same as copy-file-to-target, but don't preserve
1827# the old modification time.
1828define copy-file-to-new-target
1829@mkdir -p $(dir $@)
1830$(hide) $(ACP) -fp $< $@
1831endef
1832
1833# The same as copy-file-to-new-target, but use the local
1834# cp command instead of acp.
1835define copy-file-to-new-target-with-cp
1836@mkdir -p $(dir $@)
1837$(hide) cp -f $< $@
1838endef
1839
1840# Copy a prebuilt file to a target location.
1841define transform-prebuilt-to-target
1842@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1843$(copy-file-to-target)
1844endef
1845
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001846# Copy a prebuilt file to a target location, using zipalign on it.
1847define transform-prebuilt-to-target-with-zipalign
1848@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1849$(copy-file-to-target-with-zipalign)
1850endef
1851
Doug Zongker1046d202009-08-06 13:02:19 -07001852# Copy a prebuilt file to a target location, stripping "# comment" comments.
1853define transform-prebuilt-to-target-strip-comments
1854@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1855$(copy-file-to-target-strip-comments)
1856endef
1857
The Android Open Source Project88b60792009-03-03 19:28:42 -08001858###########################################################
1859## On some platforms (MacOS), after copying a static
1860## library, ranlib must be run to update an internal
1861## timestamp!?!?!
1862###########################################################
1863
1864ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1865define transform-host-ranlib-copy-hack
1866 $(hide) ranlib $@ || true
1867endef
1868else
1869define transform-host-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001870@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001871endef
1872endif
1873
1874ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1875define transform-ranlib-copy-hack
1876 $(hide) ranlib $@
1877endef
1878else
1879define transform-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001880@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001881endef
1882endif
1883
1884
1885###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001886## Commands to call Proguard
1887###########################################################
1888
1889# Command to copy the file with acp, if proguard is disabled.
1890define proguard-disabled-commands
1891@echo Copying: $@
Ying Wang84ed6fa2011-01-18 17:21:20 -08001892$(hide) $(ACP) -fp $< $@
Ying Wang3b2bdf12010-02-01 09:51:23 -08001893endef
1894
1895# Command to call Proguard
1896# $(1): extra flags for instrumentation.
1897define proguard-enabled-commands
1898@echo Proguard: $@
1899$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1900endef
1901
1902# Figure out the proguard dictionary file of the module that is instrumentationed for.
1903define get-instrumentation-proguard-flags
1904$(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary))
1905endef
1906
1907define transform-jar-to-proguard
1908$(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1909$(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags))
1910$(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))
1911$(eval _instrumentation_proguard_flags:=)
1912$(eval _enable_proguard:=)
1913endef
1914
1915
1916###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001917## Stuff source generated from one-off tools
1918###########################################################
1919
1920define transform-generated-source
1921@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1922@mkdir -p $(dir $@)
1923$(hide) $(PRIVATE_CUSTOM_TOOL)
1924endef
1925
1926
1927###########################################################
1928## Assertions about attributes of the target
1929###########################################################
1930
1931# $(1): The file to check
1932ifndef get-file-size
1933$(error HOST_OS must define get-file-size)
1934endif
1935
Doug Zongker4647f122009-07-02 09:00:54 -07001936# Convert a partition data size (eg, as reported in /proc/mtd) to the
1937# size of the image used to flash that partition (which includes a
Lars Svensson9cb8c282010-12-06 15:24:58 +01001938# spare area for each page).
Doug Zongker4647f122009-07-02 09:00:54 -07001939# $(1): the partition data size
1940define image-size-from-data-size
Ying Wang4a2ecaf2011-02-09 17:24:27 -08001941$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1942 ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1943$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1944$(eval _isfds_value :=))
Doug Zongker4647f122009-07-02 09:00:54 -07001945endef
1946
1947# $(1): The file(s) to check (often $@)
1948# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001949# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001950#
1951# If $(2) is empty, evaluates to "true"
1952#
1953# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1954# is left over after the image has been flashed. Round the 1% up to the
1955# next whole flash block size.
1956define assert-max-file-size
1957$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001958 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1959 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001960 printname=$$(echo -n "$(1)" | tr " " +); \
Doug Zongker4647f122009-07-02 09:00:54 -07001961 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001962 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001963 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001964 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001965 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001966 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001967 twoblocks=$$((img_blocksize * 2)); \
1968 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001969 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1970 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001971 maxsize=$$(($(2) - reserve)); \
Ying Wang99bcbeb2011-12-02 10:34:45 -08001972 echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
Doug Zongker4647f122009-07-02 09:00:54 -07001973 if [ "$$total" -gt "$$maxsize" ]; then \
1974 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1975 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001976 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001977 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001978 fi \
1979 , \
1980 true \
1981 )
1982endef
1983
Doug Zongker8510a1e2009-08-07 16:38:08 -07001984# Like assert-max-file-size, but the second argument is a partition
1985# size, which we'll convert to a max image size before checking it
1986# against the files.
1987#
1988# $(1): The file(s) to check (often $@)
1989# $(2): The partition size.
1990define assert-max-image-size
1991$(if $(2), \
1992 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1993 true)
1994endef
1995
Doug Zongkere01100c2009-06-19 17:12:18 -07001996
1997###########################################################
1998## Define device-specific radio files
1999###########################################################
2000
2001# Copy a radio image file to the output location, and add it to
2002# INSTALLED_RADIOIMAGE_TARGET.
2003# $(1): filename
2004define add-radio-file
Doug Zongker14833602010-02-02 13:12:04 -08002005 $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
Doug Zongkere01100c2009-06-19 17:12:18 -07002006endef
2007define add-radio-file-internal
Doug Zongker14833602010-02-02 13:12:04 -08002008INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
Doug Zongker14833602010-02-02 13:12:04 -08002009$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
Doug Zongkere01100c2009-06-19 17:12:18 -07002010 $$(transform-prebuilt-to-target)
2011endef
2012
Doug Zongker9296f092012-03-20 16:42:22 -07002013# Version of add-radio-file that also arranges for the version of the
2014# file to be checked against the contents of
2015# $(TARGET_BOARD_INFO_FILE).
2016# $(1): filename
2017# $(2): name of version variable in board-info (eg, "version-baseband")
2018define add-radio-file-checked
2019 $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
2020endef
2021define add-radio-file-checked-internal
2022INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
2023BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
2024$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
2025 $$(transform-prebuilt-to-target)
2026endef
2027
Doug Zongkere01100c2009-06-19 17:12:18 -07002028
The Android Open Source Project88b60792009-03-03 19:28:42 -08002029###########################################################
Joe Onorato899e62a2010-02-04 17:37:21 -08002030# Override the package defined in $(1), setting the
2031# variables listed below differently.
2032#
2033# $(1): The makefile to override (relative to the source
2034# tree root)
2035# $(2): Old LOCAL_PACKAGE_NAME value.
2036# $(3): New LOCAL_PACKAGE_NAME value.
Ying Wang3dae0ee2010-09-02 15:41:01 -07002037# $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
2038# $(5): New LOCAL_CERTIFICATE value.
2039# $(6): New LOCAL_INSTRUMENTATION_FOR value.
2040# $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
Joe Onorato899e62a2010-02-04 17:37:21 -08002041#
2042# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
2043# clear_vars.mk.
2044###########################################################
2045define inherit-package
Ying Wang3dae0ee2010-09-02 15:41:01 -07002046 $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
Joe Onorato899e62a2010-02-04 17:37:21 -08002047endef
2048
2049define inherit-package-internal
2050 LOCAL_PACKAGE_OVERRIDES \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002051 := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
Joe Onorato899e62a2010-02-04 17:37:21 -08002052 include $(1)
2053 LOCAL_PACKAGE_OVERRIDES \
2054 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
2055endef
2056
2057# To be used with inherit-package above
2058# Evalutes to true if the package was overridden
2059define set-inherited-package-variables
2060$(strip $(call set-inherited-package-variables-internal))
2061endef
2062
2063define keep-or-override
2064$(eval $(1) := $(if $(2),$(2),$($(1))))
2065endef
2066
2067define set-inherited-package-variables-internal
2068 $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2069 $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2070 $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2071 $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2072 $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002073 $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2074 $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2075 $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
Joe Onorato899e62a2010-02-04 17:37:21 -08002076 $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2077 true \
2078 ,)
2079endef
2080
Ying Wang000e89a2012-04-30 15:48:27 -07002081###########################################################
2082## Expand a module name list with REQUIRED modules
2083###########################################################
2084# $(1): The variable name that holds the initial module name list.
2085# the variable will be modified to hold the expanded results.
2086# $(2): The initial module name list.
2087# Returns empty string (maybe with some whitespaces).
2088define expand-required-modules
2089$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2090 $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2091$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2092 $(call expand-required-modules,$(1),$(_erm_new_modules)))
2093endef
Joe Onorato899e62a2010-02-04 17:37:21 -08002094
2095###########################################################
Ying Wangc065da22012-11-14 15:57:07 -08002096## API Check
2097###########################################################
2098
2099# eval this to define a rule that runs apicheck.
2100#
2101# Args:
2102# $(1) target
2103# $(2) stable api file
2104# $(3) api file to be tested
2105# $(4) arguments for apicheck
2106# $(5) command to run if apicheck failed
2107# $(6) target dependent on this api check
2108# $(7) additional dependencies
2109define check-api
2110$(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp: $(2) $(3) $(APICHECK) $(7)
2111 @echo "Checking API:" $(1)
2112 $(hide) ( $(APICHECK_COMMAND) $(4) $(2) $(3) || ( $(5) ; exit 38 ) )
2113 $(hide) mkdir -p $$(dir $$@)
2114 $(hide) touch $$@
2115$(6): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp
2116endef
2117
Ying Wang63d94fa2012-12-13 18:23:01 -08002118## Whether to build from source if prebuilt alternative exists
2119###########################################################
2120# $(1): module name
2121# $(2): LOCAL_PATH
2122# Expands to empty string if not from source.
2123ifeq (true,$(ANDROID_BUILD_FROM_SOURCE))
2124define if-build-from-source
2125true
2126endef
2127else
2128define if-build-from-source
2129$(if $(filter $(ANDROID_NO_PREBUILT_MODULES),$(1))$(filter \
2130 $(addsuffix %,$(ANDROID_NO_PREBUILT_PATHS)),$(2)),true)
2131endef
2132endif
2133
2134# Include makefile $(1) if build from source for module $(2)
2135# $(1): the makefile to include
2136# $(2): module name
2137# $(3): LOCAL_PATH
2138define include-if-build-from-source
2139$(if $(call if-build-from-source,$(2),$(3)),$(eval include $(1)))
2140endef
2141
Ying Wangc065da22012-11-14 15:57:07 -08002142###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08002143## Other includes
2144###########################################################
2145
2146# -----------------------------------------------------------------
2147# Rules and functions to help copy important files to DIST_DIR
2148# when requested.
2149include $(BUILD_SYSTEM)/distdir.mk
2150
The Android Open Source Project88b60792009-03-03 19:28:42 -08002151# broken:
2152# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2153
2154###########################################################
2155## Misc notes
2156###########################################################
2157
2158#DEPDIR = .deps
2159#df = $(DEPDIR)/$(*F)
2160
2161#SRCS = foo.c bar.c ...
2162
2163#%.o : %.c
2164# @$(MAKEDEPEND); \
2165# cp $(df).d $(df).P; \
2166# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2167# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2168# rm -f $(df).d
2169# $(COMPILE.c) -o $@ $<
2170
2171#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2172
2173
2174#%.o : %.c
2175# $(COMPILE.c) -MD -o $@ $<
2176# @cp $*.d $*.P; \
2177# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2178# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2179# rm -f $*.d