blob: dcdd0fd1d2fc4a2f698c1650a0e138f07bed5df3 [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
JP Abgrall1390cac2013-07-11 19:08:06 -0700150$(shell build/tools/findleaves.py --prune=$(OUT_DIR) --prune=.repo --prune=.git \
Joe Onoratodc1a7282009-08-04 15:58:26 -0400151 --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###########################################################
Ying Wang85898bc2013-12-04 16:04:49 -0800345# Use utility find to find given files in the given subdirs.
346# This function uses $(1), instead of LOCAL_PATH as the base.
347# $(1): the base dir, relative to the root of the source tree.
348# $(2): the file name pattern to be passed to find as "-name".
349# $(3): a list of subdirs of the base dir.
350# Returns: a list of paths relative to the base dir.
351###########################################################
352
353define find-files-in-subdirs
354$(patsubst ./%,%, \
355 $(shell cd $(1) ; \
356 find -L $(3) -name $(2) -and -not -name ".*") \
357 )
358endef
359
360###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800361## Scan through each directory of $(1) looking for files
362## that match $(2) using $(wildcard). Useful for seeing if
363## a given directory or one of its parents contains
364## a particular file. Returns the first match found,
365## starting furthest from the root.
366###########################################################
367
368define find-parent-file
369$(strip \
Ying Wanga67ce692011-03-03 13:29:38 -0800370 $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800371 $(if $(_fpf),$(_fpf), \
372 $(if $(filter-out ./ .,$(1)), \
373 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
374 ) \
375 ) \
376)
377endef
378
379###########################################################
380## Function we can evaluate to introduce a dynamic dependency
381###########################################################
382
383define add-dependency
384$(1): $(2)
385endef
386
387###########################################################
388## Set up the dependencies for a prebuilt target
389## $(call add-prebuilt-file, srcfile, [targetclass])
390###########################################################
391
392define add-prebuilt-file
393 $(eval $(include-prebuilt))
394endef
395
396define include-prebuilt
397 include $$(CLEAR_VARS)
398 LOCAL_SRC_FILES := $(1)
399 LOCAL_BUILT_MODULE_STEM := $(1)
400 LOCAL_MODULE_SUFFIX := $$(suffix $(1))
401 LOCAL_MODULE := $$(basename $(1))
402 LOCAL_MODULE_CLASS := $(2)
403 include $$(BUILD_PREBUILT)
404endef
405
406###########################################################
407## do multiple prebuilts
408## $(call target class, files ...)
409###########################################################
410
411define add-prebuilt-files
412 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
413endef
414
415
416
417###########################################################
418## The intermediates directory. Where object files go for
419## a given target. We could technically get away without
420## the "_intermediates" suffix on the directory, but it's
421## nice to be able to grep for that string to find out if
422## anyone's abusing the system.
423###########################################################
424
425# $(1): target class, like "APPS"
426# $(2): target name, like "NotePad"
427# $(3): if non-empty, this is a HOST target.
428# $(4): if non-empty, force the intermediates to be COMMON
Ying Wang61d499b2014-01-15 16:02:16 -0800429# $(5): if non-empty, force the intermedistes to be for the 2nd arch
The Android Open Source Project88b60792009-03-03 19:28:42 -0800430define intermediates-dir-for
431$(strip \
432 $(eval _idfClass := $(strip $(1))) \
433 $(if $(_idfClass),, \
434 $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
435 $(eval _idfName := $(strip $(2))) \
436 $(if $(_idfName),, \
437 $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
438 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
Ying Wang61d499b2014-01-15 16:02:16 -0800439 $(eval _idf2ndArchPrefix := $(if $(strip $(5)),$(TARGET_2ND_ARCH_VAR_PREFIX))) \
Ying Wanga83940f2010-09-24 18:09:04 -0700440 $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800441 $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
442 , \
Ying Wang61d499b2014-01-15 16:02:16 -0800443 $(eval _idfIntBase := $($(_idf2ndArchPrefix)$(_idfPrefix)_OUT_INTERMEDIATES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800444 ) \
445 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
446)
447endef
448
449# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
450# to determine the intermediates directory.
451#
452# $(1): if non-empty, force the intermediates to be COMMON
Ying Wang61d499b2014-01-15 16:02:16 -0800453# $(2): if non-empty, force the intermediates to be for the 2nd arch
The Android Open Source Project88b60792009-03-03 19:28:42 -0800454define local-intermediates-dir
455$(strip \
456 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
457 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
458 $(if $(strip $(LOCAL_MODULE)),, \
459 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
Ying Wang61d499b2014-01-15 16:02:16 -0800460 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1),$(2)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800461)
462endef
463
464###########################################################
465## Convert "path/to/libXXX.so" to "-lXXX".
466## Any "path/to/libXXX.a" elements pass through unchanged.
467###########################################################
468
469define normalize-libraries
470$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
471$(filter-out %.so,$(1))
472endef
473
474# TODO: change users to call the common version.
475define normalize-host-libraries
476$(call normalize-libraries,$(1))
477endef
478
479define normalize-target-libraries
480$(call normalize-libraries,$(1))
481endef
482
483###########################################################
484## Convert a list of short module names (e.g., "framework", "Browser")
485## into the list of files that are built for those modules.
486## NOTE: this won't return reliable results until after all
487## sub-makefiles have been included.
488## $(1): target list
489###########################################################
490
491define module-built-files
492$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
493endef
494
495###########################################################
496## Convert a list of short modules names (e.g., "framework", "Browser")
497## into the list of files that are installed for those modules.
498## NOTE: this won't return reliable results until after all
499## sub-makefiles have been included.
500## $(1): target list
501###########################################################
502
503define module-installed-files
504$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
505endef
506
507###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700508## Convert a list of short modules names (e.g., "framework", "Browser")
509## into the list of files that should be used when linking
510## against that module as a public API.
511## TODO: Allow this for more than JAVA_LIBRARIES modules
512## NOTE: this won't return reliable results until after all
513## sub-makefiles have been included.
514## $(1): target list
515###########################################################
516
517define module-stubs-files
518$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
519endef
520
521###########################################################
522## Evaluates to the timestamp file for a doc module, which
523## is the dependency that should be used.
524## $(1): doc module
525###########################################################
526
527define doc-timestamp-for
528$(OUT_DOCS)/$(strip $(1))-timestamp
529endef
530
531
532###########################################################
Ying Wang912f8282010-09-28 17:27:56 -0700533## Convert "core ext framework" to "out/.../javalib.jar ..."
The Android Open Source Project88b60792009-03-03 19:28:42 -0800534## $(1): library list
535## $(2): Non-empty if IS_HOST_MODULE
536###########################################################
537
538# $(1): library name
539# $(2): Non-empty if IS_HOST_MODULE
540define _java-lib-dir
541$(call intermediates-dir-for, \
Ying Wang912f8282010-09-28 17:27:56 -0700542 JAVA_LIBRARIES,$(1),$(2),COMMON)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800543endef
544
545# $(1): library name
546# $(2): Non-empty if IS_HOST_MODULE
547define _java-lib-full-classes.jar
Ying Wang912f8282010-09-28 17:27:56 -0700548$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800549endef
550
551# $(1): library name list
552# $(2): Non-empty if IS_HOST_MODULE
553define java-lib-files
554$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
555endef
556
557# $(1): library name
The Android Open Source Project88b60792009-03-03 19:28:42 -0800558# $(2): Non-empty if IS_HOST_MODULE
559define _java-lib-full-dep
Ying Wang45150f82013-02-27 15:23:42 -0800560$(call _java-lib-dir,$(1),$(2))/$(if $(2),javalib,classes)$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800561endef
562
563# $(1): library name list
564# $(2): Non-empty if IS_HOST_MODULE
565define java-lib-deps
566$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
567endef
568
569###########################################################
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400570## Run rot13 on a string
571## $(1): the string. Must be one line.
572###########################################################
573define rot13
574$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
575endef
576
577
578###########################################################
579## Returns true if $(1) and $(2) are equal. Returns
580## the empty string if they are not equal.
581###########################################################
582define streq
583$(strip $(if $(strip $(1)),\
584 $(if $(strip $(2)),\
585 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
586 ),\
587 $(if $(strip $(2)),\
588 ,\
589 true)\
590 ))
591endef
592
593###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800594## Convert "a b c" into "a:b:c"
595###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800596define normalize-path-list
597$(subst $(space),:,$(strip $(1)))
598endef
599
600###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700601## Read the word out of a colon-separated list of words.
602## This has the same behavior as the built-in function
603## $(word n,str).
604##
605## The individual words may not contain spaces.
606##
607## $(1): 1 based index
608## $(2): value of the form a:b:c...
609###########################################################
610
611define word-colon
612$(word $(1),$(subst :,$(space),$(2)))
613endef
614
615###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800616## Convert "a=b c= d e = f" into "a=b c=d e=f"
617##
618## $(1): list to collapse
619## $(2): if set, separator word; usually "=", ":", or ":="
620## Defaults to "=" if not set.
621###########################################################
622
623define collapse-pairs
624$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
625$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
626 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
627endef
628
The Android Open Source Project88b60792009-03-03 19:28:42 -0800629###########################################################
Ying Wang7e8d4422011-06-17 17:05:35 -0700630## Given a list of pairs, if multiple pairs have the same
631## first components, keep only the first pair.
632##
633## $(1): list of pairs
634## $(2): the separator word, such as ":", "=", etc.
635define uniq-pairs-by-first-component
636$(eval _upbfc_fc_set :=)\
637$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
638 $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
639 $(eval _upbfc_fc_set += $(_first)))))\
640$(eval _upbfc_fc_set :=)\
641$(eval _first:=)
642endef
643
644###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800645## MODULE_TAG set operations
646###########################################################
647
648# Given a list of tags, return the targets that specify
649# any of those tags.
650# $(1): tag list
651define modules-for-tag-list
652$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
653endef
654
655# Same as modules-for-tag-list, but operates on
656# ALL_MODULE_NAME_TAGS.
657# $(1): tag list
658define module-names-for-tag-list
659$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
660endef
661
662# Given an accept and reject list, find the matching
663# set of targets. If a target has multiple tags and
664# any of them are rejected, the target is rejected.
665# Reject overrides accept.
666# $(1): list of tags to accept
667# $(2): list of tags to reject
668#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
Jean-Baptiste Queru75127b72010-01-07 11:44:22 -0800669#TODO(jbq): as of 20100106 nobody uses the second parameter
The Android Open Source Project88b60792009-03-03 19:28:42 -0800670define get-tagged-modules
671$(filter-out \
672 $(call modules-for-tag-list,$(2)), \
673 $(call modules-for-tag-list,$(1)))
674endef
675
Joe Onorato64d85d02009-04-09 19:31:12 -0700676###########################################################
677## Append a leaf to a base path. Properly deals with
678## base paths ending in /.
679##
680## $(1): base path
681## $(2): leaf path
682###########################################################
683
684define append-path
685$(subst //,/,$(1)/$(2))
686endef
687
The Android Open Source Project88b60792009-03-03 19:28:42 -0800688
689###########################################################
690## Package filtering
691###########################################################
692
693# Given a list of installed modules (short or long names)
694# return a list of the packages (yes, .apk packages, not
695# modules in general) that are overridden by this list and,
696# therefore, should not be installed.
697# $(1): mixed list of installed modules
698# TODO: This is fragile; find a reliable way to get this information.
699define _get-package-overrides
700 $(eval ### Discard any words containing slashes, unless they end in .apk, \
701 ### in which case trim off the directory component and the suffix. \
702 ### If there are no slashes, keep the entire word.)
703 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
704 $(eval _gpo_names := \
705 $(filter %.apk,$(_gpo_names)) \
706 $(filter-out %@@@ @@@%,$(_gpo_names)))
707 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
708 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
709
710 $(eval ### Remove any remaining words that contain dots.)
711 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
712 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
713
714 $(eval ### Now we have a list of any words that could possibly refer to \
715 ### packages, although there may be words that do not. Only \
716 ### real packages will be present under PACKAGES.*, though.)
717 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
718endef
719
720define get-package-overrides
Conley Owensd7a1a9b2011-12-22 09:46:19 -0800721$(sort $(strip $(call _get-package-overrides,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800722endef
723
724###########################################################
725## Output the command lines, or not
726###########################################################
727
728ifeq ($(strip $(SHOW_COMMANDS)),)
729define pretty
730@echo $1
731endef
732hide := @
733else
734define pretty
735endef
736hide :=
737endif
738
739###########################################################
740## Dump the variables that are associated with targets
741###########################################################
742
743define dump-module-variables
744@echo all_dependencies=$^
745@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
746@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
747@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
748@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
749@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
750@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
751@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
752@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
753@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
754@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
Brian Carlstromf184a0f2010-02-01 11:13:32 -0800755@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800756@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
757@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
758@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
759@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
760@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
Jeff Brown703e7c62011-02-04 20:15:00 -0800761@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800762endef
763
764###########################################################
765## Commands for using sed to replace given variable values
766###########################################################
767
768define transform-variables
769@mkdir -p $(dir $@)
770@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
771$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
772$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
773endef
774
775
776###########################################################
777## Commands for munging the dependency files GCC generates
778###########################################################
Ying Wangc23f4ef2012-09-07 17:04:06 -0700779# $(1): the input .d file
780# $(2): the output .P file
781define transform-d-to-p-args
782$(hide) cp $(1) $(2); \
783 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
784 -e '/^$$/ d' -e 's/$$/ :/' < $(1) >> $(2); \
785 rm -f $(1)
786endef
The Android Open Source Project88b60792009-03-03 19:28:42 -0800787
788define transform-d-to-p
Ying Wangc23f4ef2012-09-07 17:04:06 -0700789$(call transform-d-to-p-args,$(@:%.o=%.d),$(@:%.o=%.P))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800790endef
791
792###########################################################
793## Commands for running lex
794###########################################################
795
796define transform-l-to-cpp
797@mkdir -p $(dir $@)
798@echo "Lex: $(PRIVATE_MODULE) <= $<"
799$(hide) $(LEX) -o$@ $<
800endef
801
802###########################################################
803## Commands for running yacc
804##
805## Because the extension of c++ files can change, the
806## extension must be specified in $1.
807## E.g, "$(call transform-y-to-cpp,.cpp)"
808###########################################################
809
810define transform-y-to-cpp
811@mkdir -p $(dir $@)
812@echo "Yacc: $(PRIVATE_MODULE) <= $<"
813$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
814touch $(@:$1=$(YACC_HEADER_SUFFIX))
815echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
816echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
817cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
818echo '#endif' >> $(@:$1=.h)
819rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
820endef
821
Ying Wang0bd59a02010-07-15 17:17:52 -0700822###########################################################
Tim Murraya7aa8002012-10-29 16:06:00 -0700823## Commands to compile RenderScript to Java
Ying Wang0bd59a02010-07-15 17:17:52 -0700824###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700825
826define transform-renderscripts-to-java-and-bc
827@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
828$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
829$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
830$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
Ying Wang7d83ef82011-05-25 17:16:22 -0700831$(hide) $(PRIVATE_RS_CC) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700832 -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
833 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
Ying Wang24e1c012010-10-07 18:57:57 -0700834 -d $(PRIVATE_RS_OUTPUT_DIR) \
835 -a $@ -MD \
Stephen Hinesc963eae2011-08-10 13:53:05 -0700836 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
Stephen Hines914f7a22011-12-06 18:43:24 -0800837 $(PRIVATE_RS_FLAGS) \
Ying Wang51280272010-09-01 13:28:52 -0700838 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700839 $(PRIVATE_RS_SOURCE_FILES)
Ying Wang0bd59a02010-07-15 17:17:52 -0700840$(hide) mkdir -p $(dir $@)
841$(hide) touch $@
842endef
843
Stephen Hinese719f282012-11-28 16:52:41 -0800844define transform-bc-to-so
Stephen Hines9ac9b532013-02-27 00:51:08 -0800845@echo "Renderscript compatibility: $(notdir $@) <= $(notdir $<)"
Stephen Hinese719f282012-11-28 16:52:41 -0800846$(hide) mkdir -p $(dir $@)
Stephen Hinesf6925132012-12-17 14:23:14 -0800847$(hide) $(BCC_COMPAT) -O3 -o $(dir $@)/$(notdir $(<:.bc=.o)) -fPIC -shared \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800848 -rt-path $(RS_PREBUILT_CLCORE) -mtriple $(RS_TRIPLE) $<
Stephen Hines7d6ec712012-12-13 19:24:50 -0800849$(hide) $(PRIVATE_CXX) -shared -Wl,-soname,$(notdir $@) -nostdlib \
Stephen Hinesf6925132012-12-17 14:23:14 -0800850 -Wl,-rpath,\$$ORIGIN/../lib \
Stephen Hines9541f582013-01-18 16:27:23 -0800851 $(dir $@)/$(notdir $(<:.bc=.o)) \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800852 $(RS_PREBUILT_COMPILER_RT) \
Stephen Hines9541f582013-01-18 16:27:23 -0800853 -o $@ -L prebuilts/gcc/ \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800854 -L $(TARGET_OUT_INTERMEDIATE_LIBRARIES) $(RS_PREBUILT_LIBPATH) \
Stephen Hines8db4cce2013-03-27 16:51:38 -0700855 -lRSSupport -lm -lc
Stephen Hinese719f282012-11-28 16:52:41 -0800856endef
857
Tim Murraya7aa8002012-10-29 16:06:00 -0700858###########################################################
859## Commands to compile RenderScript to C++
860###########################################################
861
862define transform-renderscripts-to-cpp-and-bc
863@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
864$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
865$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/
866$(hide) $(PRIVATE_RS_CC) \
867 -o $(PRIVATE_RS_OUTPUT_DIR)/ \
868 -d $(PRIVATE_RS_OUTPUT_DIR) \
869 -a $@ -MD \
870 -reflect-c++ \
871 $(PRIVATE_RS_FLAGS) \
872 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
873 $(PRIVATE_RS_SOURCE_FILES)
874$(hide) mkdir -p $(dir $@)
875$(hide) touch $@
876endef
877
The Android Open Source Project88b60792009-03-03 19:28:42 -0800878
879###########################################################
880## Commands for running aidl
881###########################################################
882
883define transform-aidl-to-java
884@mkdir -p $(dir $@)
885@echo "Aidl: $(PRIVATE_MODULE) <= $<"
886$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
887endef
888#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
889
890
Doug Zongker9bd49622009-11-30 14:28:59 -0800891###########################################################
892## Commands for running java-event-log-tags.py
893###########################################################
894
895define transform-logtags-to-java
896@mkdir -p $(dir $@)
897@echo "logtags: $@ <= $<"
Doug Zongkerabfbbe22010-02-16 14:32:08 -0800898$(hide) $(JAVATAGS) -o $@ $^
Doug Zongker9bd49622009-11-30 14:28:59 -0800899endef
900
The Android Open Source Project88b60792009-03-03 19:28:42 -0800901
902###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700903## Commands for running protoc to compile .proto into .java
904###########################################################
905
906define transform-proto-to-java
907@mkdir -p $(dir $@)
908@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
909@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
910@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
Ben Murdochfc2bad52013-07-25 11:44:53 +0100911$(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \
912 $(PROTOC) \
Ulas Kirazci28b46fc2013-07-24 14:32:14 -0700913 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ulas Kirazci6e485b52013-07-25 12:28:19 -0700914 $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)="$(PRIVATE_PROTO_JAVA_OUTPUT_PARAMS):$(PRIVATE_PROTO_JAVA_OUTPUT_DIR)" \
Ben Murdochfc2bad52013-07-25 11:44:53 +0100915 $(PRIVATE_PROTOC_FLAGS) \
916 $$f || exit 33; \
917 done
Ying Wanga5fc87a2010-11-02 18:43:16 -0700918$(hide) touch $@
919endef
920
921######################################################################
922## Commands for running protoc to compile .proto into .pb.cc and .pb.h
923######################################################################
924define transform-proto-to-cc
925@mkdir -p $(dir $@)
926@echo "Protoc: $@ <= $<"
927$(hide) $(PROTOC) \
928 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ying Wang33c0d952010-11-05 11:30:58 -0700929 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700930 --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
931endef
932
933
934###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800935## Commands for running gcc to compile a C++ file
936###########################################################
937
938define transform-cpp-to-o
939@mkdir -p $(dir $@)
940@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
941$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700942 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700943 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700944 $(addprefix -isystem ,\
945 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
946 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700947 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700948 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800949 -c \
950 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700951 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
952 $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800953 $(PRIVATE_ARM_CFLAGS) \
954 ) \
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700955 $(PRIVATE_RTTI_FLAG) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800956 $(PRIVATE_CFLAGS) \
957 $(PRIVATE_CPPFLAGS) \
958 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800959 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800960$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800961endef
962
963
964###########################################################
965## Commands for running gcc to compile a C file
966###########################################################
967
968# $(1): extra flags
969define transform-c-or-s-to-o-no-deps
970@mkdir -p $(dir $@)
971$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -0700972 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700973 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700974 $(addprefix -isystem ,\
975 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
976 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700977 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700978 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800979 -c \
980 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700981 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800982 $(PRIVATE_ARM_CFLAGS) \
983 ) \
Ying Wang65d78522012-08-10 16:30:42 -0700984 $(1) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800985 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -0800986endef
987
988define transform-c-to-o-no-deps
989@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
Ying Wang7429e212012-08-15 10:59:10 -0700990$(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 -0800991endef
992
993define transform-s-to-o-no-deps
994@echo "target asm: $(PRIVATE_MODULE) <= $<"
995$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
996endef
997
998define transform-c-to-o
999$(transform-c-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001000$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001001endef
1002
1003define transform-s-to-o
1004$(transform-s-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001005$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001006endef
1007
1008###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001009## Commands for running gcc to compile an Objective-C file
1010## This should never happen for target builds but this
1011## will error at build time.
1012###########################################################
1013
1014define transform-m-to-o-no-deps
1015@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
Ying Wang65d78522012-08-10 16:30:42 -07001016$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001017endef
1018
1019define transform-m-to-o
1020$(transform-m-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001021$(transform-d-to-p)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001022endef
1023
1024###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001025## Commands for running gcc to compile a host C++ file
1026###########################################################
1027
1028define transform-host-cpp-to-o
1029@mkdir -p $(dir $@)
1030@echo "host C++: $(PRIVATE_MODULE) <= $<"
1031$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -07001032 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001033 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001034 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001035 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001036 $(filter-out $(PRIVATE_C_INCLUDES), \
1037 $(HOST_PROJECT_INCLUDES) \
Logan Chiene6f65432013-12-10 19:07:41 +08001038 $(PRIVATE_HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001039 -c \
1040 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001041 $(PRIVATE_HOST_GLOBAL_CFLAGS) \
1042 $(PRIVATE_HOST_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001043 ) \
1044 $(PRIVATE_CFLAGS) \
1045 $(PRIVATE_CPPFLAGS) \
1046 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001047 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001048$(transform-d-to-p)
1049endef
1050
1051
1052###########################################################
1053## Commands for running gcc to compile a host C file
1054###########################################################
1055
1056# $(1): extra flags
1057define transform-host-c-or-s-to-o-no-deps
1058@mkdir -p $(dir $@)
1059$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -07001060 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001061 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001062 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001063 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001064 $(filter-out $(PRIVATE_C_INCLUDES), \
1065 $(HOST_PROJECT_INCLUDES) \
Logan Chiene6f65432013-12-10 19:07:41 +08001066 $(PRIVATE_HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001067 -c \
1068 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001069 $(PRIVATE_HOST_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001070 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001071 $(1) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001072 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001073endef
1074
1075define transform-host-c-to-o-no-deps
1076@echo "host C: $(PRIVATE_MODULE) <= $<"
Ying Wang7429e212012-08-15 10:59:10 -07001077$(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 -08001078endef
1079
1080define transform-host-s-to-o-no-deps
1081@echo "host asm: $(PRIVATE_MODULE) <= $<"
1082$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1083endef
1084
1085define transform-host-c-to-o
1086$(transform-host-c-to-o-no-deps)
1087$(transform-d-to-p)
1088endef
1089
1090define transform-host-s-to-o
1091$(transform-host-s-to-o-no-deps)
1092$(transform-d-to-p)
1093endef
1094
1095###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001096## Commands for running gcc to compile a host Objective-C file
1097###########################################################
1098
1099define transform-host-m-to-o-no-deps
1100@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
Ying Wang65d78522012-08-10 16:30:42 -07001101$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001102endef
1103
David 'Digit' Turner5ca286d2011-02-11 16:19:31 +01001104define transform-host-m-to-o
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001105$(transform-host-m-to-o-no-deps)
1106$(transform-d-to-p)
1107endef
1108
1109###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001110## Commands for running ar
1111###########################################################
1112
Ying Wange4b24eb2010-05-27 11:55:39 -07001113define _concat-if-arg2-not-empty
1114$(if $(2),$(hide) $(1) $(2))
1115endef
1116
1117# Split long argument list into smaller groups and call the command repeatedly
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001118# Call the command at least once even if there are no arguments, as otherwise
1119# the output file won't be created.
Ying Wange4b24eb2010-05-27 11:55:39 -07001120#
1121# $(1): the command without arguments
1122# $(2): the arguments
1123define split-long-arguments
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001124$(hide) $(1) $(wordlist 1,500,$(2))
Ying Wange4b24eb2010-05-27 11:55:39 -07001125$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1126$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1127$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1128$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1129$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1130$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1131endef
1132
Ying Wanga02d3d92011-01-27 18:48:00 -08001133# $(1): the full path of the source static library.
1134define _extract-and-include-single-target-whole-static-lib
1135@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1136$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1137 rm -rf $$ldir; \
1138 mkdir -p $$ldir; \
1139 filelist=; \
1140 for f in `$(TARGET_AR) t $(1)`; do \
Ying Wang61d499b2014-01-15 16:02:16 -08001141 $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) p $(1) $$f > $$ldir/$$f; \
Ying Wanga02d3d92011-01-27 18:48:00 -08001142 filelist="$$filelist $$ldir/$$f"; \
1143 done ; \
Ying Wang61d499b2014-01-15 16:02:16 -08001144 $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_ARFLAGS) \
1145 $(PRIVATE_ARFLAGS) $@ $$filelist
Ying Wanga02d3d92011-01-27 18:48:00 -08001146
1147endef
1148
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001149define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -07001150$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001151 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
Dima Zavin46e9bec2009-05-27 19:41:07 -07001152endef
1153
The Android Open Source Project88b60792009-03-03 19:28:42 -08001154# Explicitly delete the archive first so that ar doesn't
1155# try to add to an existing archive.
1156define transform-o-to-static-lib
1157@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001158@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001159$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -07001160@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wang61d499b2014-01-15 16:02:16 -08001161$(call split-long-arguments,$($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_ARFLAGS) \
1162 $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001163endef
1164
1165###########################################################
1166## Commands for running host ar
1167###########################################################
1168
Ying Wanga02d3d92011-01-27 18:48:00 -08001169# $(1): the full path of the source static library.
1170define _extract-and-include-single-host-whole-static-lib
1171@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1172$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1173 rm -rf $$ldir; \
1174 mkdir -p $$ldir; \
1175 filelist=; \
Jeff Hamilton293f9392011-11-18 17:15:25 -06001176 for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
Ying Wanga02d3d92011-01-27 18:48:00 -08001177 $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1178 filelist="$$filelist $$ldir/$$f"; \
1179 done ; \
1180 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1181
1182endef
1183
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001184define extract-and-include-host-whole-static-libs
1185$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001186 $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001187endef
1188
The Android Open Source Project88b60792009-03-03 19:28:42 -08001189# Explicitly delete the archive first so that ar doesn't
1190# try to add to an existing archive.
1191define transform-host-o-to-static-lib
1192@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001193@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001194$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -07001195@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001196$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001197endef
1198
1199
1200###########################################################
1201## Commands for running gcc to link a shared library or package
1202###########################################################
1203
1204# ld just seems to be so finicky with command order that we allow
1205# it to be overriden en-masse see combo/linux-arm.make for an example.
1206ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1207define transform-host-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001208$(hide) $(PRIVATE_CXX) \
Ying Wang80e6cce2011-01-24 23:25:36 -08001209 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001210 -Wl,-rpath,\$$ORIGIN/../lib \
1211 -shared -Wl,-soname,$(notdir $@) \
1212 $(PRIVATE_LDFLAGS) \
1213 $(HOST_GLOBAL_LD_DIRS) \
1214 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001215 $(PRIVATE_HOST_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001216 ) \
1217 $(PRIVATE_ALL_OBJECTS) \
1218 -Wl,--whole-archive \
1219 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1220 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001221 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001222 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001223 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001224 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1225 -o $@ \
1226 $(PRIVATE_LDLIBS)
1227endef
1228endif
1229
1230define transform-host-o-to-shared-lib
1231@mkdir -p $(dir $@)
1232@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001233$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001234endef
1235
1236define transform-host-o-to-package
1237@mkdir -p $(dir $@)
1238@echo "host Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001239$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001240endef
1241
1242
1243###########################################################
1244## Commands for running gcc to link a shared library or package
1245###########################################################
1246
1247#echo >$@.vers "{"; \
1248#echo >>$@.vers " global:"; \
1249#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1250#echo >>$@.vers " local:"; \
1251#echo >>$@.vers " *;"; \
1252#echo >>$@.vers "};"; \
1253
1254# -Wl,--version-script=$@.vers \
1255
1256# ld just seems to be so finicky with command order that we allow
1257# it to be overriden en-masse see combo/linux-arm.make for an example.
1258ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1259define transform-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001260$(hide) $(PRIVATE_CXX) \
Ying Wang1a081002010-07-13 14:55:47 -07001261 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001262 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1263 -Wl,-rpath,\$$ORIGIN/../lib \
1264 -shared -Wl,-soname,$(notdir $@) \
1265 $(PRIVATE_LDFLAGS) \
Ying Wang1a081002010-07-13 14:55:47 -07001266 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001267 $(PRIVATE_ALL_OBJECTS) \
1268 -Wl,--whole-archive \
Ying Wang80e6cce2011-01-24 23:25:36 -08001269 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001270 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001271 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001272 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001273 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001274 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1275 -o $@ \
1276 $(PRIVATE_LDLIBS)
1277endef
1278endif
1279
1280define transform-o-to-shared-lib
1281@mkdir -p $(dir $@)
1282@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001283$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001284endef
1285
1286define transform-o-to-package
1287@mkdir -p $(dir $@)
1288@echo "target Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001289$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001290endef
1291
1292
1293###########################################################
1294## Commands for filtering a target executable or library
1295###########################################################
1296
The Android Open Source Project88b60792009-03-03 19:28:42 -08001297define transform-to-stripped
1298@mkdir -p $(dir $@)
1299@echo "target Strip: $(PRIVATE_MODULE) ($@)"
Bruce Beare45ac4342010-06-24 14:02:00 -07001300$(hide) $(TARGET_STRIP_COMMAND)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001301endef
1302
The Android Open Source Project88b60792009-03-03 19:28:42 -08001303
1304###########################################################
1305## Commands for running gcc to link an executable
1306###########################################################
1307
1308ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1309define transform-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001310$(hide) $(PRIVATE_CXX) \
Ying Wangc6ffc002012-09-25 17:52:10 -07001311 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1312 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001313 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1314 -Wl,-rpath,\$$ORIGIN/../lib \
1315 $(PRIVATE_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001316 $(PRIVATE_ALL_OBJECTS) \
1317 -Wl,--whole-archive \
1318 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1319 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001320 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001321 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001322 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001323 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1324 -o $@ \
1325 $(PRIVATE_LDLIBS)
1326endef
1327endif
1328
1329define transform-o-to-executable
1330@mkdir -p $(dir $@)
1331@echo "target Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001332$(transform-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001333endef
1334
1335
1336###########################################################
1337## Commands for running gcc to link a statically linked
1338## executable. In practice, we only use this on arm, so
1339## the other platforms don't have the
1340## transform-o-to-static-executable defined
1341###########################################################
1342
1343ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1344define transform-o-to-static-executable-inner
1345endef
1346endif
1347
1348define transform-o-to-static-executable
1349@mkdir -p $(dir $@)
1350@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001351$(transform-o-to-static-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001352endef
1353
1354
1355###########################################################
1356## Commands for running gcc to link a host executable
1357###########################################################
1358
1359ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1360define transform-host-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001361$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001362 $(PRIVATE_ALL_OBJECTS) \
1363 -Wl,--whole-archive \
1364 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1365 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001366 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001367 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001368 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001369 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
Conley Owensd9e7d252011-11-10 09:57:40 -08001370 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1371 -Wl,-rpath,\$$ORIGIN/../lib \
1372 $(HOST_GLOBAL_LD_DIRS) \
1373 $(PRIVATE_LDFLAGS) \
1374 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001375 $(PRIVATE_HOST_GLOBAL_LDFLAGS) \
Joshua J. Drakeb0eafa22013-12-12 00:34:29 -06001376 -fPIE -pie \
Conley Owensd9e7d252011-11-10 09:57:40 -08001377 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001378 -o $@ \
1379 $(PRIVATE_LDLIBS)
1380endef
1381endif
1382
1383define transform-host-o-to-executable
1384@mkdir -p $(dir $@)
1385@echo "host Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001386$(transform-host-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001387endef
1388
1389
1390###########################################################
1391## Commands for running javac to make .class files
1392###########################################################
1393
1394#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1395#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1396
1397# TODO: Right now we generate the asset resources twice, first as part
1398# of generating the Java classes, then at the end when packaging the final
1399# assets. This should be changed to do one of two things: (1) Don't generate
1400# any resource files the first time, only create classes during that stage;
1401# or (2) Don't use the -c flag with the second stage, instead taking the
1402# resource files from the first stage as additional input. My original intent
1403# was to use approach (2), but this requires a little more work in the tool.
1404# Maybe we should just use approach (1).
1405
1406# This rule creates the R.java and Manifest.java files, both of which
Ying Wang4f1ab922011-03-15 13:19:30 -07001407# are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001408define create-resource-java-files
1409@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1410@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
Ying Wangc61d5932010-03-10 16:02:42 -08001411$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
Ying Wang4f1ab922011-03-15 13:19:30 -07001412 $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001413 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1414 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1415 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1416 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1417 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001418 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001419 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001420 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1421 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001422 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001423 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Ying Wang8c254822010-03-16 16:13:56 -07001424 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001425 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001426endef
1427
1428ifeq ($(HOST_OS),windows)
1429xlint_unchecked :=
1430else
Jeffrey Chyan7adbf972010-07-07 13:42:19 -05001431xlint_unchecked := -Xlint:unchecked
The Android Open Source Project88b60792009-03-03 19:28:42 -08001432endif
1433
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001434ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1435incremental_dex := --incremental
1436else
1437incremental_dex :=
1438endif
1439
The Android Open Source Project88b60792009-03-03 19:28:42 -08001440# emit-line, <word list>, <output file>
1441define emit-line
1442 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1443endef
1444
1445# dump-words-to-file, <word list>, <output file>
1446define dump-words-to-file
1447 @rm -f $(2)
1448 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1449 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1450 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1451 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1452 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1453 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1454 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1455 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1456 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1457 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1458 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1459 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1460 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1461 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1462 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1463 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1464 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1465 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1466 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1467 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
Jesse Wilson72c941a2010-05-04 16:33:49 -07001468 @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1469 @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1470 @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1471 @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1472 @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1473 @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001474endef
1475
1476# For a list of jar files, unzip them to a specified directory,
1477# but make sure that no META-INF files come along for the ride.
1478#
1479# $(1): files to unzip
1480# $(2): destination directory
1481define unzip-jar-files
1482 $(hide) for f in $(1); \
1483 do \
1484 if [ ! -f $$f ]; then \
1485 echo Missing file $$f; \
1486 exit 1; \
1487 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001488 unzip -qo $$f -d $(2); \
Ying Wang3a6f7582012-08-30 12:59:42 -07001489 done \
1490 $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,;rm -rf $(2)/META-INF)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001491endef
1492
Brian Carlstrom78269512010-12-10 12:10:24 -08001493# Common definition to invoke javac on the host and target.
1494#
1495# Some historical notes:
1496# - below we write the list of java files to java-source-list to avoid argument
1497# list length problems with Cygwin
1498# - we filter out duplicate java file names because eclipse's compiler
1499# doesn't like them.
1500#
1501# $(1): javac
1502# $(2): bootclasspath
1503define compile-java
Joe Onorato64d85d02009-04-09 19:31:12 -07001504$(hide) rm -f $@
1505$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001506$(hide) mkdir -p $(dir $@)
Joe Onorato64d85d02009-04-09 19:31:12 -07001507$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001508$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
Ying Wang015edd22011-01-20 15:01:56 -08001509$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001510$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Ying Wanga3b75932013-08-14 16:59:00 -07001511 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001512fi
Ying Wang015edd22011-01-20 15:01:56 -08001513$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1514 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wange109a1d2011-12-12 17:52:03 -08001515$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1516 $(1) -encoding UTF-8 \
Brian Carlstrom78269512010-12-10 12:10:24 -08001517 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
Ying Wang057eba02012-10-18 10:54:49 -07001518 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001519 $(2) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001520 $(addprefix -classpath ,$(strip \
1521 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
Ying Wang057eba02012-10-18 10:54:49 -07001522 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001523 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001524 $(PRIVATE_JAVACFLAGS) \
Ying Wang015edd22011-01-20 15:01:56 -08001525 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
Ying Wange109a1d2011-12-12 17:52:03 -08001526 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1527fi
Joe Onorato0eccce92011-10-30 21:37:35 -07001528$(if $(PRIVATE_JAVA_LAYERS_FILE), $(hide) build/tools/java-layers.py \
1529 $(PRIVATE_JAVA_LAYERS_FILE) \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq,)
Ying Wang015edd22011-01-20 15:01:56 -08001530$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1531$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wang5758b8e2011-12-15 16:36:55 -08001532$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1533 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1534 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1535 | xargs rm -rf)
Jeff Brownae859f92013-07-17 20:29:51 -07001536$(if $(PRIVATE_JAR_PACKAGES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -mindepth 1 -type d \
1537 $(foreach pkg, $(PRIVATE_JAR_PACKAGES), \
1538 -not -path $(PRIVATE_CLASS_INTERMEDIATES_DIR)/$(subst .,/,$(pkg))) \
1539 | xargs rm -rf)
Ying Wanga3b75932013-08-14 16:59:00 -07001540$(if $(PRIVATE_RMTYPEDEFS), $(hide) $(RMTYPEDEFS) -v $(PRIVATE_CLASS_INTERMEDIATES_DIR))
Guang Zhu5c9a1a42013-09-24 19:05:52 -07001541$(if $(PRIVATE_JAR_MANIFEST), \
1542 $(hide) sed -e 's/%BUILD_NUMBER%/$(BUILD_NUMBER)/' \
1543 $(PRIVATE_JAR_MANIFEST) > $(dir $@)/manifest.mf && \
1544 jar -cfm $@ $(dir $@)/manifest.mf \
1545 -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ., \
1546 $(hide) jar -cf $@ -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .)
Brian Carlstrom78269512010-12-10 12:10:24 -08001547endef
1548
1549define transform-java-to-classes.jar
1550@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1551$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001552endef
1553
Ying Wang015edd22011-01-20 15:01:56 -08001554# Override the above definitions if we want to do incremetal javac
1555ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1556define compile-java
1557$(hide) mkdir -p $(dir $@)
1558$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1559$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1560$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1561$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1562 newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1563 fi ; \
1564 find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1565 if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1566 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1567 fi
1568$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1569 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1570@echo "(Incremental) build source files:"
1571@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1572$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
Joe Onorato149dd912011-05-31 18:21:07 -07001573 $(1) -encoding UTF-8 \
Ying Wang015edd22011-01-20 15:01:56 -08001574 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
Ying Wang057eba02012-10-18 10:54:49 -07001575 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Ying Wang015edd22011-01-20 15:01:56 -08001576 $(2) \
1577 $(addprefix -classpath ,$(strip \
1578 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
Ying Wang057eba02012-10-18 10:54:49 -07001579 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Ying Wang015edd22011-01-20 15:01:56 -08001580 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1581 $(PRIVATE_JAVACFLAGS) \
1582 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1583 || ( exit 41 ) \
1584fi
1585$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1586$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1587$(hide) rm -f $@
Ying Wangae25ec12012-06-19 10:40:37 -07001588$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1589 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1590 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1591 | xargs rm -rf)
Jeff Brownae859f92013-07-17 20:29:51 -07001592$(if $(PRIVATE_JAR_PACKAGES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -mindepth 1 -type d \
1593 $(foreach pkg, $(PRIVATE_JAR_PACKAGES), \
1594 -not -path $(PRIVATE_CLASS_INTERMEDIATES_DIR)/$(subst .,/,$(pkg))) \
1595 | xargs rm -rf)
Ying Wanga3b75932013-08-14 16:59:00 -07001596$(if $(PRIVATE_RMTYPEDEFS), $(hide) $(RMTYPEDEFS) -v $(PRIVATE_CLASS_INTERMEDIATES_DIR))
Guang Zhu65ca9e62013-09-25 15:27:20 -07001597$(if $(PRIVATE_JAR_MANIFEST), \
1598 $(hide) sed -e 's/%BUILD_NUMBER%/$(BUILD_NUMBER)/' \
1599 $(PRIVATE_JAR_MANIFEST) > $(dir $@)/manifest.mf && \
1600 jar -cfm $@ $(dir $@)/manifest.mf \
1601 -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ., \
1602 $(hide) jar -cf $@ -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .)
Ying Wang015edd22011-01-20 15:01:56 -08001603$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1604endef
1605
1606define transform-java-to-classes.jar
1607@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1608$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1609endef
1610endif # ENABLE_INCREMENTALJAVAC
1611
The Android Open Source Project88b60792009-03-03 19:28:42 -08001612define transform-classes.jar-to-emma
1613$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
Guang Zhu155afe32010-03-10 15:48:03 -08001614 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
Guang Zhu9cd3d8c2010-06-15 13:31:25 -07001615 $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001616endef
1617
1618#TODO: use a smaller -Xmx value for most libraries;
1619# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001620# 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 -08001621define transform-classes.jar-to-dex
1622@echo "target Dex: $(PRIVATE_MODULE)"
1623@mkdir -p $(dir $@)
Yohann Roussel8ffe9c32013-08-20 17:05:27 +02001624$(hide) rm -f $(dir $@)/classes*.dex
Raphaelf6ff4c52009-08-18 14:43:32 -07001625$(hide) $(DX) \
Wink Saville29b3afa2012-01-30 15:30:10 -08001626 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
Yohann Roussel8ffe9c32013-08-20 17:05:27 +02001627 --dex --output=$(dir $@) \
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001628 $(incremental_dex) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001629 $(if $(NO_OPTIMIZE_DX), \
1630 --no-optimize) \
1631 $(if $(GENERATE_DEX_DEBUG), \
1632 --debug --verbose \
1633 --dump-to=$(@:.dex=.lst) \
1634 --dump-width=1000) \
1635 $(PRIVATE_DX_FLAGS) \
1636 $<
1637endef
1638
1639# Create a mostly-empty .jar file that we'll add to later.
1640# The MacOS jar tool doesn't like creating empty jar files,
1641# so we need to give it something.
1642define create-empty-package
1643@mkdir -p $(dir $@)
1644$(hide) touch $(dir $@)/dummy
1645$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1646$(hide) zip -qd $@ dummy
1647$(hide) rm $(dir $@)/dummy
1648endef
1649
1650#TODO: we kinda want to build different asset packages for
1651# different configurations, then combine them later (or something).
1652# Per-locale, etc.
1653# A list of dynamic and static parameters; build layers for
1654# dynamic params that lay over the static ones.
1655#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001656#Note that the version numbers are given to aapt as simple default
1657#values; applications can override these by explicitly stating
1658#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001659define add-assets-to-package
Ying Wangc61d5932010-03-10 16:02:42 -08001660$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
Ying Wang4f1ab922011-03-15 13:19:30 -07001661 $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
Dianne Hackborna0f464a2011-10-14 19:37:57 -07001662 $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001663 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1664 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1665 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1666 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001667 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1668 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Joe Onorato700b88e2010-10-05 17:33:58 -04001669 $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001670 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001671 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Jeff Hamiltonbb67d212010-02-05 22:36:42 -06001672 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001673 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001674 -F $@
1675endef
1676
The Android Open Source Project88b60792009-03-03 19:28:42 -08001677define add-jni-shared-libs-to-package
1678$(hide) rm -rf $(dir $@)lib
Jack Palevicha0ab29b2010-06-18 15:38:07 +08001679$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1680$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001681$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1682$(hide) rm -rf $(dir $@)lib
1683endef
1684
The Android Open Source Project88b60792009-03-03 19:28:42 -08001685#TODO: update the manifest to point to the dex file
1686define add-dex-to-package
Yohann Roussel8ffe9c32013-08-20 17:05:27 +02001687$(hide) zip -qj $@ $(dir $(PRIVATE_DEX_FILE))/classes*.dex
The Android Open Source Project88b60792009-03-03 19:28:42 -08001688endef
1689
Ying Wang85480622012-08-09 15:20:50 -07001690# Add java resources added by the current module.
1691#
The Android Open Source Project88b60792009-03-03 19:28:42 -08001692define add-java-resources-to-package
Ying Wang194a8ec2011-06-06 14:34:52 -07001693$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1694$(hide) jar uf $@ @$(dir $@)jar-arg-list
1695@rm -f $(dir $@)jar-arg-list
The Android Open Source Project88b60792009-03-03 19:28:42 -08001696endef
1697
Ying Wang85480622012-08-09 15:20:50 -07001698# Add java resources carried by static Java libraries.
1699#
1700define add-carried-java-resources
1701$(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \
1702 java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \
1703 | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \
1704 if [ -n "$$java_res_jar_flags" ] ; then \
1705 echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \
1706 jar uf $@ $$java_res_jar_flags; \
1707 fi; \
1708fi
1709endef
1710
The Android Open Source Project88b60792009-03-03 19:28:42 -08001711# Sign a package using the specified key/cert.
1712#
1713define sign-package
1714$(hide) mv $@ $@.unsigned
1715$(hide) java -jar $(SIGNAPK_JAR) \
Ying Wang31df0682012-11-13 10:55:28 -08001716 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) \
1717 $(PRIVATE_ADDITIONAL_CERTIFICATES) $@.unsigned $@.signed
The Android Open Source Project88b60792009-03-03 19:28:42 -08001718$(hide) mv $@.signed $@
1719endef
1720
1721# Align STORED entries of a package on 4-byte boundaries
1722# to make them easier to mmap.
1723#
1724define align-package
1725$(hide) mv $@ $@.unaligned
1726$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1727$(hide) mv $@.aligned $@
1728endef
1729
1730define install-dex-debug
1731$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1732 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1733 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1734 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1735 fi
1736$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1737 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1738 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1739 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1740 fi
1741endef
1742
1743# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1744# new prebuilt rules to work, we should change this to copy the
1745# resources to the out directory and then copy the resources.
1746
Brian Carlstrom78269512010-12-10 12:10:24 -08001747# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1748# in transform-java-to-classes for the sake of vm-tests.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001749define transform-host-java-to-package
1750@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Ying Wang015edd22011-01-20 15:01:56 -08001751$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Ying Wang194a8ec2011-06-06 14:34:52 -07001752$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001753endef
1754
1755###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001756## Commands for copying files
1757###########################################################
1758
1759# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1760# $(1): source header
1761# $(2): destination header
1762define copy-one-header
1763$(2): $(1)
1764 @echo "Header: $$@"
1765 $$(copy-file-to-new-target-with-cp)
1766endef
1767
1768# Define a rule to copy a file. For use via $(eval).
1769# $(1): source file
1770# $(2): destination file
1771define copy-one-file
1772$(2): $(1) | $(ACP)
1773 @echo "Copy: $$@"
1774 $$(copy-file-to-target)
1775endef
1776
Joe Onoratoe44705a2012-05-17 17:12:04 -07001777# Copies many files.
1778# $(1): The files to copy. Each entry is a ':' separated src:dst pair
1779# Evaluates to the list of the dst files (ie suitable for a dependency list)
1780define copy-many-files
1781$(foreach f, $(1), $(strip \
1782 $(eval _cmf_tuple := $(subst :, ,$(f))) \
1783 $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \
1784 $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \
1785 $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \
1786 $(_cmf_dest)))
1787endef
1788
Ying Wang3ceecfa2012-05-14 14:39:00 -07001789# Copy the file only if it's a well-formed xml file. For use via $(eval).
1790# $(1): source file
1791# $(2): destination file, must end with .xml.
1792define copy-xml-file-checked
1793$(2): $(1) | $(ACP)
1794 @echo "Copy xml: $$@"
1795 $(hide) xmllint $$< >/dev/null # Don't print the xml file to stdout.
1796 $$(copy-file-to-target)
1797endef
1798
The Android Open Source Project88b60792009-03-03 19:28:42 -08001799# The -t option to acp and the -p option to cp is
1800# required for OSX. OSX has a ridiculous restriction
1801# where it's an error for a .a file's modification time
1802# to disagree with an internal timestamp, and this
1803# macro is used to install .a files (among other things).
1804
1805# Copy a single file from one place to another,
1806# preserving permissions and overwriting any existing
1807# file.
Ian Rogers76a6dc32012-10-01 16:36:23 -07001808# We disable the "-t" option for acp cannot handle
Ying Wang84ed6fa2011-01-18 17:21:20 -08001809# high resolution timestamp correctly on file systems like ext4.
1810# Therefore copy-file-to-target is the same as copy-file-to-new-target.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001811define copy-file-to-target
1812@mkdir -p $(dir $@)
Ying Wang84ed6fa2011-01-18 17:21:20 -08001813$(hide) $(ACP) -fp $< $@
The Android Open Source Project88b60792009-03-03 19:28:42 -08001814endef
1815
1816# The same as copy-file-to-target, but use the local
1817# cp command instead of acp.
1818define copy-file-to-target-with-cp
1819@mkdir -p $(dir $@)
1820$(hide) cp -fp $< $@
1821endef
1822
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001823# The same as copy-file-to-target, but use the zipalign tool to do so.
1824define copy-file-to-target-with-zipalign
1825@mkdir -p $(dir $@)
1826$(hide) $(ZIPALIGN) -f 4 $< $@
1827endef
1828
Doug Zongker1046d202009-08-06 13:02:19 -07001829# The same as copy-file-to-target, but strip out "# comment"-style
1830# comments (for config files and such).
1831define copy-file-to-target-strip-comments
1832@mkdir -p $(dir $@)
1833$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1834endef
1835
The Android Open Source Project88b60792009-03-03 19:28:42 -08001836# The same as copy-file-to-target, but don't preserve
1837# the old modification time.
1838define copy-file-to-new-target
1839@mkdir -p $(dir $@)
1840$(hide) $(ACP) -fp $< $@
1841endef
1842
1843# The same as copy-file-to-new-target, but use the local
1844# cp command instead of acp.
1845define copy-file-to-new-target-with-cp
1846@mkdir -p $(dir $@)
1847$(hide) cp -f $< $@
1848endef
1849
1850# Copy a prebuilt file to a target location.
1851define transform-prebuilt-to-target
1852@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1853$(copy-file-to-target)
1854endef
1855
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001856# Copy a prebuilt file to a target location, using zipalign on it.
1857define transform-prebuilt-to-target-with-zipalign
1858@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1859$(copy-file-to-target-with-zipalign)
1860endef
1861
Doug Zongker1046d202009-08-06 13:02:19 -07001862# Copy a prebuilt file to a target location, stripping "# comment" comments.
1863define transform-prebuilt-to-target-strip-comments
1864@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1865$(copy-file-to-target-strip-comments)
1866endef
1867
The Android Open Source Project88b60792009-03-03 19:28:42 -08001868###########################################################
1869## On some platforms (MacOS), after copying a static
1870## library, ranlib must be run to update an internal
1871## timestamp!?!?!
1872###########################################################
1873
1874ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1875define transform-host-ranlib-copy-hack
1876 $(hide) ranlib $@ || true
1877endef
1878else
1879define transform-host-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
1884ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1885define transform-ranlib-copy-hack
1886 $(hide) ranlib $@
1887endef
1888else
1889define transform-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001890@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001891endef
1892endif
1893
1894
1895###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001896## Commands to call Proguard
1897###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001898define transform-jar-to-proguard
Ying Wang7311a342013-08-21 18:32:49 -07001899@echo Proguard: $@
1900$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS)
Ying Wang3b2bdf12010-02-01 09:51:23 -08001901endef
1902
Ying Wang3b2bdf12010-02-01 09:51:23 -08001903###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001904## Stuff source generated from one-off tools
1905###########################################################
1906
1907define transform-generated-source
1908@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1909@mkdir -p $(dir $@)
1910$(hide) $(PRIVATE_CUSTOM_TOOL)
1911endef
1912
1913
1914###########################################################
1915## Assertions about attributes of the target
1916###########################################################
1917
1918# $(1): The file to check
1919ifndef get-file-size
1920$(error HOST_OS must define get-file-size)
1921endif
1922
Doug Zongker4647f122009-07-02 09:00:54 -07001923# Convert a partition data size (eg, as reported in /proc/mtd) to the
1924# size of the image used to flash that partition (which includes a
Lars Svensson9cb8c282010-12-06 15:24:58 +01001925# spare area for each page).
Doug Zongker4647f122009-07-02 09:00:54 -07001926# $(1): the partition data size
1927define image-size-from-data-size
Ying Wang4a2ecaf2011-02-09 17:24:27 -08001928$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1929 ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1930$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1931$(eval _isfds_value :=))
Doug Zongker4647f122009-07-02 09:00:54 -07001932endef
1933
1934# $(1): The file(s) to check (often $@)
1935# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001936# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001937#
1938# If $(2) is empty, evaluates to "true"
1939#
1940# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1941# is left over after the image has been flashed. Round the 1% up to the
1942# next whole flash block size.
1943define assert-max-file-size
1944$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001945 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1946 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001947 printname=$$(echo -n "$(1)" | tr " " +); \
Doug Zongker4647f122009-07-02 09:00:54 -07001948 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001949 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001950 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001951 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001952 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001953 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001954 twoblocks=$$((img_blocksize * 2)); \
1955 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001956 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1957 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001958 maxsize=$$(($(2) - reserve)); \
Ying Wang99bcbeb2011-12-02 10:34:45 -08001959 echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
Doug Zongker4647f122009-07-02 09:00:54 -07001960 if [ "$$total" -gt "$$maxsize" ]; then \
1961 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1962 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001963 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001964 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001965 fi \
1966 , \
1967 true \
1968 )
1969endef
1970
Doug Zongker8510a1e2009-08-07 16:38:08 -07001971# Like assert-max-file-size, but the second argument is a partition
1972# size, which we'll convert to a max image size before checking it
1973# against the files.
1974#
1975# $(1): The file(s) to check (often $@)
1976# $(2): The partition size.
1977define assert-max-image-size
1978$(if $(2), \
1979 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1980 true)
1981endef
1982
Doug Zongkere01100c2009-06-19 17:12:18 -07001983
1984###########################################################
1985## Define device-specific radio files
1986###########################################################
Ying Wang94de1eb2013-07-26 12:19:20 -07001987INSTALLED_RADIOIMAGE_TARGET :=
Doug Zongkere01100c2009-06-19 17:12:18 -07001988
1989# Copy a radio image file to the output location, and add it to
1990# INSTALLED_RADIOIMAGE_TARGET.
1991# $(1): filename
1992define add-radio-file
Doug Zongker14833602010-02-02 13:12:04 -08001993 $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
Doug Zongkere01100c2009-06-19 17:12:18 -07001994endef
1995define add-radio-file-internal
Doug Zongker14833602010-02-02 13:12:04 -08001996INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
Doug Zongker14833602010-02-02 13:12:04 -08001997$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
Doug Zongkere01100c2009-06-19 17:12:18 -07001998 $$(transform-prebuilt-to-target)
1999endef
2000
Doug Zongker9296f092012-03-20 16:42:22 -07002001# Version of add-radio-file that also arranges for the version of the
2002# file to be checked against the contents of
2003# $(TARGET_BOARD_INFO_FILE).
2004# $(1): filename
2005# $(2): name of version variable in board-info (eg, "version-baseband")
2006define add-radio-file-checked
2007 $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
2008endef
2009define add-radio-file-checked-internal
2010INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
2011BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
2012$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
2013 $$(transform-prebuilt-to-target)
2014endef
2015
Doug Zongkere01100c2009-06-19 17:12:18 -07002016
The Android Open Source Project88b60792009-03-03 19:28:42 -08002017###########################################################
Joe Onorato899e62a2010-02-04 17:37:21 -08002018# Override the package defined in $(1), setting the
2019# variables listed below differently.
2020#
2021# $(1): The makefile to override (relative to the source
2022# tree root)
2023# $(2): Old LOCAL_PACKAGE_NAME value.
2024# $(3): New LOCAL_PACKAGE_NAME value.
Ying Wang3dae0ee2010-09-02 15:41:01 -07002025# $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
2026# $(5): New LOCAL_CERTIFICATE value.
2027# $(6): New LOCAL_INSTRUMENTATION_FOR value.
2028# $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
Joe Onorato899e62a2010-02-04 17:37:21 -08002029#
2030# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
2031# clear_vars.mk.
2032###########################################################
2033define inherit-package
Ying Wang3dae0ee2010-09-02 15:41:01 -07002034 $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
Joe Onorato899e62a2010-02-04 17:37:21 -08002035endef
2036
2037define inherit-package-internal
2038 LOCAL_PACKAGE_OVERRIDES \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002039 := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
Joe Onorato899e62a2010-02-04 17:37:21 -08002040 include $(1)
2041 LOCAL_PACKAGE_OVERRIDES \
2042 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
2043endef
2044
2045# To be used with inherit-package above
2046# Evalutes to true if the package was overridden
2047define set-inherited-package-variables
2048$(strip $(call set-inherited-package-variables-internal))
2049endef
2050
2051define keep-or-override
2052$(eval $(1) := $(if $(2),$(2),$($(1))))
2053endef
2054
2055define set-inherited-package-variables-internal
2056 $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2057 $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2058 $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2059 $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2060 $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002061 $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2062 $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2063 $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
Joe Onorato899e62a2010-02-04 17:37:21 -08002064 $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2065 true \
2066 ,)
2067endef
2068
Ying Wang000e89a2012-04-30 15:48:27 -07002069###########################################################
2070## Expand a module name list with REQUIRED modules
2071###########################################################
2072# $(1): The variable name that holds the initial module name list.
2073# the variable will be modified to hold the expanded results.
2074# $(2): The initial module name list.
2075# Returns empty string (maybe with some whitespaces).
2076define expand-required-modules
2077$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2078 $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2079$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2080 $(call expand-required-modules,$(1),$(_erm_new_modules)))
2081endef
Joe Onorato899e62a2010-02-04 17:37:21 -08002082
2083###########################################################
Ying Wangc065da22012-11-14 15:57:07 -08002084## API Check
2085###########################################################
2086
2087# eval this to define a rule that runs apicheck.
2088#
2089# Args:
2090# $(1) target
2091# $(2) stable api file
2092# $(3) api file to be tested
2093# $(4) arguments for apicheck
2094# $(5) command to run if apicheck failed
2095# $(6) target dependent on this api check
2096# $(7) additional dependencies
2097define check-api
2098$(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp: $(2) $(3) $(APICHECK) $(7)
2099 @echo "Checking API:" $(1)
2100 $(hide) ( $(APICHECK_COMMAND) $(4) $(2) $(3) || ( $(5) ; exit 38 ) )
2101 $(hide) mkdir -p $$(dir $$@)
2102 $(hide) touch $$@
2103$(6): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp
2104endef
2105
Ying Wang63d94fa2012-12-13 18:23:01 -08002106## Whether to build from source if prebuilt alternative exists
2107###########################################################
2108# $(1): module name
2109# $(2): LOCAL_PATH
2110# Expands to empty string if not from source.
2111ifeq (true,$(ANDROID_BUILD_FROM_SOURCE))
2112define if-build-from-source
2113true
2114endef
2115else
2116define if-build-from-source
2117$(if $(filter $(ANDROID_NO_PREBUILT_MODULES),$(1))$(filter \
2118 $(addsuffix %,$(ANDROID_NO_PREBUILT_PATHS)),$(2)),true)
2119endef
2120endif
2121
2122# Include makefile $(1) if build from source for module $(2)
2123# $(1): the makefile to include
2124# $(2): module name
2125# $(3): LOCAL_PATH
2126define include-if-build-from-source
2127$(if $(call if-build-from-source,$(2),$(3)),$(eval include $(1)))
2128endef
2129
Ying Wangc065da22012-11-14 15:57:07 -08002130###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08002131## Other includes
2132###########################################################
2133
2134# -----------------------------------------------------------------
2135# Rules and functions to help copy important files to DIST_DIR
2136# when requested.
2137include $(BUILD_SYSTEM)/distdir.mk
2138
Marie Lennerhagen9e5efce2010-10-20 13:41:59 +02002139# Include any vendor specific definitions.mk file
2140-include $(TOPDIR)vendor/*/build/core/definitions.mk
2141
The Android Open Source Project88b60792009-03-03 19:28:42 -08002142# broken:
2143# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2144
2145###########################################################
2146## Misc notes
2147###########################################################
2148
2149#DEPDIR = .deps
2150#df = $(DEPDIR)/$(*F)
2151
2152#SRCS = foo.c bar.c ...
2153
2154#%.o : %.c
2155# @$(MAKEDEPEND); \
2156# cp $(df).d $(df).P; \
2157# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2158# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2159# rm -f $(df).d
2160# $(COMPILE.c) -o $@ $<
2161
2162#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2163
2164
2165#%.o : %.c
2166# $(COMPILE.c) -MD -o $@ $<
2167# @cp $*.d $*.P; \
2168# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2169# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2170# rm -f $*.d