blob: dada61ef725c9a58e41083ef336f47b9293d54be [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 Wang7c8c7bd2013-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 Wang6ef65192014-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 Wang6ef65192014-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 Wang6ef65192014-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 Wang6ef65192014-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 Wang6ef65192014-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###########################################################
Colin Crossd8262642014-01-24 23:17:21 -0800465## The generated sources directory. Placing generated
466## source files directly in the intermediates directory
467## causes problems for multiarch builds, where there are
468## two intermediates directories for a single target. Put
469## them in a separate directory, and they will be copied to
470## each intermediates directory automatically.
471###########################################################
472
473# $(1): target class, like "APPS"
474# $(2): target name, like "NotePad"
475# $(3): if non-empty, this is a HOST target.
476# $(4): if non-empty, force the generated sources to be COMMON
477define generated-sources-dir-for
478$(strip \
479 $(eval _idfClass := $(strip $(1))) \
480 $(if $(_idfClass),, \
481 $(error $(LOCAL_PATH): Class not defined in call to generated-sources-dir-for)) \
482 $(eval _idfName := $(strip $(2))) \
483 $(if $(_idfName),, \
484 $(error $(LOCAL_PATH): Name not defined in call to generated-sources-dir-for)) \
485 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
486 $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
487 $(eval _idfIntBase := $($(_idfPrefix)_OUT_GEN_COMMON)) \
488 , \
489 $(eval _idfIntBase := $($(_idfPrefix)_OUT_GEN)) \
490 ) \
491 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
492)
493endef
494
495# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
496# to determine the generated sources directory.
497#
498# $(1): if non-empty, force the intermediates to be COMMON
499define local-generated-sources-dir
500$(strip \
501 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
502 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-generated-sources-dir)) \
503 $(if $(strip $(LOCAL_MODULE)),, \
504 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-generated-sources-dir)) \
505 $(call generated-sources-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
506)
507endef
508
509###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800510## Convert "path/to/libXXX.so" to "-lXXX".
511## Any "path/to/libXXX.a" elements pass through unchanged.
512###########################################################
513
514define normalize-libraries
515$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
516$(filter-out %.so,$(1))
517endef
518
519# TODO: change users to call the common version.
520define normalize-host-libraries
521$(call normalize-libraries,$(1))
522endef
523
524define normalize-target-libraries
525$(call normalize-libraries,$(1))
526endef
527
528###########################################################
529## Convert a list of short module names (e.g., "framework", "Browser")
530## into the list of files that are built for those modules.
531## NOTE: this won't return reliable results until after all
532## sub-makefiles have been included.
533## $(1): target list
534###########################################################
535
536define module-built-files
537$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
538endef
539
540###########################################################
541## Convert a list of short modules names (e.g., "framework", "Browser")
542## into the list of files that are installed for those modules.
543## NOTE: this won't return reliable results until after all
544## sub-makefiles have been included.
545## $(1): target list
546###########################################################
547
548define module-installed-files
549$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
550endef
551
552###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700553## Convert a list of short modules names (e.g., "framework", "Browser")
554## into the list of files that should be used when linking
555## against that module as a public API.
556## TODO: Allow this for more than JAVA_LIBRARIES modules
557## NOTE: this won't return reliable results until after all
558## sub-makefiles have been included.
559## $(1): target list
560###########################################################
561
562define module-stubs-files
563$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
564endef
565
566###########################################################
567## Evaluates to the timestamp file for a doc module, which
568## is the dependency that should be used.
569## $(1): doc module
570###########################################################
571
572define doc-timestamp-for
573$(OUT_DOCS)/$(strip $(1))-timestamp
574endef
575
576
577###########################################################
Ying Wang912f8282010-09-28 17:27:56 -0700578## Convert "core ext framework" to "out/.../javalib.jar ..."
The Android Open Source Project88b60792009-03-03 19:28:42 -0800579## $(1): library list
580## $(2): Non-empty if IS_HOST_MODULE
581###########################################################
582
583# $(1): library name
584# $(2): Non-empty if IS_HOST_MODULE
585define _java-lib-dir
586$(call intermediates-dir-for, \
Ying Wang912f8282010-09-28 17:27:56 -0700587 JAVA_LIBRARIES,$(1),$(2),COMMON)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800588endef
589
590# $(1): library name
591# $(2): Non-empty if IS_HOST_MODULE
592define _java-lib-full-classes.jar
Ying Wang912f8282010-09-28 17:27:56 -0700593$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800594endef
595
596# $(1): library name list
597# $(2): Non-empty if IS_HOST_MODULE
598define java-lib-files
599$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
600endef
601
602# $(1): library name
The Android Open Source Project88b60792009-03-03 19:28:42 -0800603# $(2): Non-empty if IS_HOST_MODULE
604define _java-lib-full-dep
Ying Wang45150f82013-02-27 15:23:42 -0800605$(call _java-lib-dir,$(1),$(2))/$(if $(2),javalib,classes)$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800606endef
607
608# $(1): library name list
609# $(2): Non-empty if IS_HOST_MODULE
610define java-lib-deps
611$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
612endef
613
614###########################################################
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400615## Run rot13 on a string
616## $(1): the string. Must be one line.
617###########################################################
618define rot13
619$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
620endef
621
622
623###########################################################
624## Returns true if $(1) and $(2) are equal. Returns
625## the empty string if they are not equal.
626###########################################################
627define streq
628$(strip $(if $(strip $(1)),\
629 $(if $(strip $(2)),\
630 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
631 ),\
632 $(if $(strip $(2)),\
633 ,\
634 true)\
635 ))
636endef
637
638###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800639## Convert "a b c" into "a:b:c"
640###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800641define normalize-path-list
642$(subst $(space),:,$(strip $(1)))
643endef
644
645###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700646## Read the word out of a colon-separated list of words.
647## This has the same behavior as the built-in function
648## $(word n,str).
649##
650## The individual words may not contain spaces.
651##
652## $(1): 1 based index
653## $(2): value of the form a:b:c...
654###########################################################
655
656define word-colon
657$(word $(1),$(subst :,$(space),$(2)))
658endef
659
660###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800661## Convert "a=b c= d e = f" into "a=b c=d e=f"
662##
663## $(1): list to collapse
664## $(2): if set, separator word; usually "=", ":", or ":="
665## Defaults to "=" if not set.
666###########################################################
667
668define collapse-pairs
669$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
670$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
671 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
672endef
673
The Android Open Source Project88b60792009-03-03 19:28:42 -0800674###########################################################
Ying Wang7e8d4422011-06-17 17:05:35 -0700675## Given a list of pairs, if multiple pairs have the same
676## first components, keep only the first pair.
677##
678## $(1): list of pairs
679## $(2): the separator word, such as ":", "=", etc.
680define uniq-pairs-by-first-component
681$(eval _upbfc_fc_set :=)\
682$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
683 $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
684 $(eval _upbfc_fc_set += $(_first)))))\
685$(eval _upbfc_fc_set :=)\
686$(eval _first:=)
687endef
688
689###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800690## MODULE_TAG set operations
691###########################################################
692
693# Given a list of tags, return the targets that specify
694# any of those tags.
695# $(1): tag list
696define modules-for-tag-list
697$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
698endef
699
700# Same as modules-for-tag-list, but operates on
701# ALL_MODULE_NAME_TAGS.
702# $(1): tag list
703define module-names-for-tag-list
704$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
705endef
706
707# Given an accept and reject list, find the matching
708# set of targets. If a target has multiple tags and
709# any of them are rejected, the target is rejected.
710# Reject overrides accept.
711# $(1): list of tags to accept
712# $(2): list of tags to reject
713#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
Jean-Baptiste Queru75127b72010-01-07 11:44:22 -0800714#TODO(jbq): as of 20100106 nobody uses the second parameter
The Android Open Source Project88b60792009-03-03 19:28:42 -0800715define get-tagged-modules
716$(filter-out \
717 $(call modules-for-tag-list,$(2)), \
718 $(call modules-for-tag-list,$(1)))
719endef
720
Joe Onorato64d85d02009-04-09 19:31:12 -0700721###########################################################
722## Append a leaf to a base path. Properly deals with
723## base paths ending in /.
724##
725## $(1): base path
726## $(2): leaf path
727###########################################################
728
729define append-path
730$(subst //,/,$(1)/$(2))
731endef
732
The Android Open Source Project88b60792009-03-03 19:28:42 -0800733
734###########################################################
735## Package filtering
736###########################################################
737
738# Given a list of installed modules (short or long names)
739# return a list of the packages (yes, .apk packages, not
740# modules in general) that are overridden by this list and,
741# therefore, should not be installed.
742# $(1): mixed list of installed modules
743# TODO: This is fragile; find a reliable way to get this information.
744define _get-package-overrides
745 $(eval ### Discard any words containing slashes, unless they end in .apk, \
746 ### in which case trim off the directory component and the suffix. \
747 ### If there are no slashes, keep the entire word.)
748 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
749 $(eval _gpo_names := \
750 $(filter %.apk,$(_gpo_names)) \
751 $(filter-out %@@@ @@@%,$(_gpo_names)))
752 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
753 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
754
755 $(eval ### Remove any remaining words that contain dots.)
756 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
757 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
758
759 $(eval ### Now we have a list of any words that could possibly refer to \
760 ### packages, although there may be words that do not. Only \
761 ### real packages will be present under PACKAGES.*, though.)
762 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
763endef
764
765define get-package-overrides
Conley Owensd7a1a9b2011-12-22 09:46:19 -0800766$(sort $(strip $(call _get-package-overrides,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800767endef
768
769###########################################################
770## Output the command lines, or not
771###########################################################
772
773ifeq ($(strip $(SHOW_COMMANDS)),)
774define pretty
775@echo $1
776endef
777hide := @
778else
779define pretty
780endef
781hide :=
782endif
783
784###########################################################
785## Dump the variables that are associated with targets
786###########################################################
787
788define dump-module-variables
789@echo all_dependencies=$^
790@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
791@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
792@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
793@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
794@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
795@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
796@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
797@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
798@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
799@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
Brian Carlstromf184a0f2010-02-01 11:13:32 -0800800@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800801@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
802@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
803@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
804@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
805@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
Jeff Brown703e7c62011-02-04 20:15:00 -0800806@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800807endef
808
809###########################################################
810## Commands for using sed to replace given variable values
811###########################################################
812
813define transform-variables
814@mkdir -p $(dir $@)
815@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
816$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
817$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
818endef
819
820
821###########################################################
822## Commands for munging the dependency files GCC generates
823###########################################################
Ying Wangc23f4ef2012-09-07 17:04:06 -0700824# $(1): the input .d file
825# $(2): the output .P file
826define transform-d-to-p-args
827$(hide) cp $(1) $(2); \
828 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
829 -e '/^$$/ d' -e 's/$$/ :/' < $(1) >> $(2); \
830 rm -f $(1)
831endef
The Android Open Source Project88b60792009-03-03 19:28:42 -0800832
833define transform-d-to-p
Ying Wangc23f4ef2012-09-07 17:04:06 -0700834$(call transform-d-to-p-args,$(@:%.o=%.d),$(@:%.o=%.P))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800835endef
836
837###########################################################
838## Commands for running lex
839###########################################################
840
841define transform-l-to-cpp
842@mkdir -p $(dir $@)
843@echo "Lex: $(PRIVATE_MODULE) <= $<"
844$(hide) $(LEX) -o$@ $<
845endef
846
847###########################################################
848## Commands for running yacc
849##
850## Because the extension of c++ files can change, the
851## extension must be specified in $1.
852## E.g, "$(call transform-y-to-cpp,.cpp)"
853###########################################################
854
855define transform-y-to-cpp
856@mkdir -p $(dir $@)
857@echo "Yacc: $(PRIVATE_MODULE) <= $<"
858$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
859touch $(@:$1=$(YACC_HEADER_SUFFIX))
860echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
861echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
862cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
863echo '#endif' >> $(@:$1=.h)
864rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
865endef
866
Ying Wang0bd59a02010-07-15 17:17:52 -0700867###########################################################
Tim Murraya7aa8002012-10-29 16:06:00 -0700868## Commands to compile RenderScript to Java
Ying Wang0bd59a02010-07-15 17:17:52 -0700869###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700870
871define transform-renderscripts-to-java-and-bc
872@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
873$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
874$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
875$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
Ying Wang7d83ef82011-05-25 17:16:22 -0700876$(hide) $(PRIVATE_RS_CC) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700877 -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
878 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
Ying Wang24e1c012010-10-07 18:57:57 -0700879 -d $(PRIVATE_RS_OUTPUT_DIR) \
880 -a $@ -MD \
Stephen Hinesc963eae2011-08-10 13:53:05 -0700881 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
Stephen Hines914f7a22011-12-06 18:43:24 -0800882 $(PRIVATE_RS_FLAGS) \
Ying Wang51280272010-09-01 13:28:52 -0700883 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700884 $(PRIVATE_RS_SOURCE_FILES)
Ying Wang0bd59a02010-07-15 17:17:52 -0700885$(hide) mkdir -p $(dir $@)
886$(hide) touch $@
887endef
888
Stephen Hinese719f282012-11-28 16:52:41 -0800889define transform-bc-to-so
Stephen Hines9ac9b532013-02-27 00:51:08 -0800890@echo "Renderscript compatibility: $(notdir $@) <= $(notdir $<)"
Stephen Hinese719f282012-11-28 16:52:41 -0800891$(hide) mkdir -p $(dir $@)
Stephen Hinesf6925132012-12-17 14:23:14 -0800892$(hide) $(BCC_COMPAT) -O3 -o $(dir $@)/$(notdir $(<:.bc=.o)) -fPIC -shared \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800893 -rt-path $(RS_PREBUILT_CLCORE) -mtriple $(RS_TRIPLE) $<
Stephen Hines7d6ec712012-12-13 19:24:50 -0800894$(hide) $(PRIVATE_CXX) -shared -Wl,-soname,$(notdir $@) -nostdlib \
Stephen Hinesf6925132012-12-17 14:23:14 -0800895 -Wl,-rpath,\$$ORIGIN/../lib \
Stephen Hines9541f582013-01-18 16:27:23 -0800896 $(dir $@)/$(notdir $(<:.bc=.o)) \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800897 $(RS_PREBUILT_COMPILER_RT) \
Stephen Hines9541f582013-01-18 16:27:23 -0800898 -o $@ -L prebuilts/gcc/ \
Tim Murray1a6f09a2013-03-05 11:07:15 -0800899 -L $(TARGET_OUT_INTERMEDIATE_LIBRARIES) $(RS_PREBUILT_LIBPATH) \
Stephen Hines8db4cce2013-03-27 16:51:38 -0700900 -lRSSupport -lm -lc
Stephen Hinese719f282012-11-28 16:52:41 -0800901endef
902
Tim Murraya7aa8002012-10-29 16:06:00 -0700903###########################################################
904## Commands to compile RenderScript to C++
905###########################################################
906
907define transform-renderscripts-to-cpp-and-bc
908@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
909$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
910$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/
911$(hide) $(PRIVATE_RS_CC) \
912 -o $(PRIVATE_RS_OUTPUT_DIR)/ \
913 -d $(PRIVATE_RS_OUTPUT_DIR) \
914 -a $@ -MD \
915 -reflect-c++ \
916 $(PRIVATE_RS_FLAGS) \
917 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
918 $(PRIVATE_RS_SOURCE_FILES)
919$(hide) mkdir -p $(dir $@)
920$(hide) touch $@
921endef
922
The Android Open Source Project88b60792009-03-03 19:28:42 -0800923
924###########################################################
925## Commands for running aidl
926###########################################################
927
928define transform-aidl-to-java
929@mkdir -p $(dir $@)
930@echo "Aidl: $(PRIVATE_MODULE) <= $<"
931$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
932endef
933#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
934
935
Doug Zongker9bd49622009-11-30 14:28:59 -0800936###########################################################
937## Commands for running java-event-log-tags.py
938###########################################################
939
940define transform-logtags-to-java
941@mkdir -p $(dir $@)
942@echo "logtags: $@ <= $<"
Doug Zongkerabfbbe22010-02-16 14:32:08 -0800943$(hide) $(JAVATAGS) -o $@ $^
Doug Zongker9bd49622009-11-30 14:28:59 -0800944endef
945
The Android Open Source Project88b60792009-03-03 19:28:42 -0800946
947###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700948## Commands for running protoc to compile .proto into .java
949###########################################################
950
951define transform-proto-to-java
952@mkdir -p $(dir $@)
953@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
954@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
955@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
Ben Murdochfc2bad52013-07-25 11:44:53 +0100956$(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \
957 $(PROTOC) \
Ulas Kirazci28b46fc2013-07-24 14:32:14 -0700958 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ulas Kirazci6e485b52013-07-25 12:28:19 -0700959 $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)="$(PRIVATE_PROTO_JAVA_OUTPUT_PARAMS):$(PRIVATE_PROTO_JAVA_OUTPUT_DIR)" \
Ben Murdochfc2bad52013-07-25 11:44:53 +0100960 $(PRIVATE_PROTOC_FLAGS) \
961 $$f || exit 33; \
962 done
Ying Wanga5fc87a2010-11-02 18:43:16 -0700963$(hide) touch $@
964endef
965
966######################################################################
967## Commands for running protoc to compile .proto into .pb.cc and .pb.h
968######################################################################
969define transform-proto-to-cc
970@mkdir -p $(dir $@)
971@echo "Protoc: $@ <= $<"
972$(hide) $(PROTOC) \
973 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ying Wang33c0d952010-11-05 11:30:58 -0700974 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700975 --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
976endef
977
978
979###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980## Commands for running gcc to compile a C++ file
981###########################################################
982
983define transform-cpp-to-o
984@mkdir -p $(dir $@)
985@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
986$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700987 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700988 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700989 $(addprefix -isystem ,\
990 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
991 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700992 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700993 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800994 -c \
995 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700996 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
997 $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800998 $(PRIVATE_ARM_CFLAGS) \
999 ) \
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001000 $(PRIVATE_RTTI_FLAG) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001001 $(PRIVATE_CFLAGS) \
1002 $(PRIVATE_CPPFLAGS) \
1003 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001004 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
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
1009###########################################################
1010## Commands for running gcc to compile a C file
1011###########################################################
1012
1013# $(1): extra flags
1014define transform-c-or-s-to-o-no-deps
1015@mkdir -p $(dir $@)
1016$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -07001017 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001018 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -07001019 $(addprefix -isystem ,\
1020 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1021 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -07001022 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -07001023 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001024 -c \
1025 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -07001026 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001027 $(PRIVATE_ARM_CFLAGS) \
1028 ) \
Ying Wang65d78522012-08-10 16:30:42 -07001029 $(1) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001030 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001031endef
1032
1033define transform-c-to-o-no-deps
1034@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
Ying Wang7429e212012-08-15 10:59:10 -07001035$(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 -08001036endef
1037
1038define transform-s-to-o-no-deps
1039@echo "target asm: $(PRIVATE_MODULE) <= $<"
1040$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1041endef
1042
1043define transform-c-to-o
1044$(transform-c-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001045$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001046endef
1047
1048define transform-s-to-o
1049$(transform-s-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001050$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001051endef
1052
1053###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001054## Commands for running gcc to compile an Objective-C file
1055## This should never happen for target builds but this
1056## will error at build time.
1057###########################################################
1058
1059define transform-m-to-o-no-deps
1060@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
Ying Wang65d78522012-08-10 16:30:42 -07001061$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001062endef
1063
1064define transform-m-to-o
1065$(transform-m-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001066$(transform-d-to-p)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001067endef
1068
1069###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001070## Commands for running gcc to compile a host C++ file
1071###########################################################
1072
1073define transform-host-cpp-to-o
1074@mkdir -p $(dir $@)
1075@echo "host C++: $(PRIVATE_MODULE) <= $<"
1076$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -07001077 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001078 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001079 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001080 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001081 $(filter-out $(PRIVATE_C_INCLUDES), \
1082 $(HOST_PROJECT_INCLUDES) \
Logan Chiene6f65432013-12-10 19:07:41 +08001083 $(PRIVATE_HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001084 -c \
1085 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001086 $(PRIVATE_HOST_GLOBAL_CFLAGS) \
1087 $(PRIVATE_HOST_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001088 ) \
1089 $(PRIVATE_CFLAGS) \
1090 $(PRIVATE_CPPFLAGS) \
1091 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001092 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001093$(transform-d-to-p)
1094endef
1095
1096
1097###########################################################
1098## Commands for running gcc to compile a host C file
1099###########################################################
1100
1101# $(1): extra flags
1102define transform-host-c-or-s-to-o-no-deps
1103@mkdir -p $(dir $@)
1104$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -07001105 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001106 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001107 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001108 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001109 $(filter-out $(PRIVATE_C_INCLUDES), \
1110 $(HOST_PROJECT_INCLUDES) \
Logan Chiene6f65432013-12-10 19:07:41 +08001111 $(PRIVATE_HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001112 -c \
1113 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001114 $(PRIVATE_HOST_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001115 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001116 $(1) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001117 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001118endef
1119
1120define transform-host-c-to-o-no-deps
1121@echo "host C: $(PRIVATE_MODULE) <= $<"
Ying Wang7429e212012-08-15 10:59:10 -07001122$(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 -08001123endef
1124
1125define transform-host-s-to-o-no-deps
1126@echo "host asm: $(PRIVATE_MODULE) <= $<"
1127$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1128endef
1129
1130define transform-host-c-to-o
1131$(transform-host-c-to-o-no-deps)
1132$(transform-d-to-p)
1133endef
1134
1135define transform-host-s-to-o
1136$(transform-host-s-to-o-no-deps)
1137$(transform-d-to-p)
1138endef
1139
1140###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001141## Commands for running gcc to compile a host Objective-C file
1142###########################################################
1143
1144define transform-host-m-to-o-no-deps
1145@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
Ying Wang65d78522012-08-10 16:30:42 -07001146$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001147endef
1148
David 'Digit' Turner5ca286d2011-02-11 16:19:31 +01001149define transform-host-m-to-o
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001150$(transform-host-m-to-o-no-deps)
1151$(transform-d-to-p)
1152endef
1153
1154###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001155## Commands for running ar
1156###########################################################
1157
Ying Wange4b24eb2010-05-27 11:55:39 -07001158define _concat-if-arg2-not-empty
1159$(if $(2),$(hide) $(1) $(2))
1160endef
1161
1162# Split long argument list into smaller groups and call the command repeatedly
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001163# Call the command at least once even if there are no arguments, as otherwise
1164# the output file won't be created.
Ying Wange4b24eb2010-05-27 11:55:39 -07001165#
1166# $(1): the command without arguments
1167# $(2): the arguments
1168define split-long-arguments
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001169$(hide) $(1) $(wordlist 1,500,$(2))
Ying Wange4b24eb2010-05-27 11:55:39 -07001170$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1171$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1172$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1173$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1174$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1175$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1176endef
1177
Ying Wanga02d3d92011-01-27 18:48:00 -08001178# $(1): the full path of the source static library.
1179define _extract-and-include-single-target-whole-static-lib
1180@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1181$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1182 rm -rf $$ldir; \
1183 mkdir -p $$ldir; \
1184 filelist=; \
1185 for f in `$(TARGET_AR) t $(1)`; do \
Ying Wang6ef65192014-01-15 16:02:16 -08001186 $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) p $(1) $$f > $$ldir/$$f; \
Ying Wanga02d3d92011-01-27 18:48:00 -08001187 filelist="$$filelist $$ldir/$$f"; \
1188 done ; \
Ying Wang6ef65192014-01-15 16:02:16 -08001189 $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_ARFLAGS) \
1190 $(PRIVATE_ARFLAGS) $@ $$filelist
Ying Wanga02d3d92011-01-27 18:48:00 -08001191
1192endef
1193
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001194define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -07001195$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001196 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
Dima Zavin46e9bec2009-05-27 19:41:07 -07001197endef
1198
The Android Open Source Project88b60792009-03-03 19:28:42 -08001199# Explicitly delete the archive first so that ar doesn't
1200# try to add to an existing archive.
1201define transform-o-to-static-lib
1202@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001203@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001204$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -07001205@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wang6ef65192014-01-15 16:02:16 -08001206$(call split-long-arguments,$($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_ARFLAGS) \
1207 $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001208endef
1209
1210###########################################################
1211## Commands for running host ar
1212###########################################################
1213
Ying Wanga02d3d92011-01-27 18:48:00 -08001214# $(1): the full path of the source static library.
1215define _extract-and-include-single-host-whole-static-lib
1216@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1217$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1218 rm -rf $$ldir; \
1219 mkdir -p $$ldir; \
1220 filelist=; \
Jeff Hamilton293f9392011-11-18 17:15:25 -06001221 for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
Ying Wanga02d3d92011-01-27 18:48:00 -08001222 $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1223 filelist="$$filelist $$ldir/$$f"; \
1224 done ; \
1225 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1226
1227endef
1228
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001229define extract-and-include-host-whole-static-libs
1230$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001231 $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001232endef
1233
The Android Open Source Project88b60792009-03-03 19:28:42 -08001234# Explicitly delete the archive first so that ar doesn't
1235# try to add to an existing archive.
1236define transform-host-o-to-static-lib
1237@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001238@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001239$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -07001240@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001241$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001242endef
1243
1244
1245###########################################################
1246## Commands for running gcc to link a shared library or package
1247###########################################################
1248
1249# ld just seems to be so finicky with command order that we allow
1250# it to be overriden en-masse see combo/linux-arm.make for an example.
1251ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1252define transform-host-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001253$(hide) $(PRIVATE_CXX) \
Ying Wang80e6cce2011-01-24 23:25:36 -08001254 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001255 -Wl,-rpath,\$$ORIGIN/../lib \
1256 -shared -Wl,-soname,$(notdir $@) \
1257 $(PRIVATE_LDFLAGS) \
1258 $(HOST_GLOBAL_LD_DIRS) \
1259 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001260 $(PRIVATE_HOST_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001261 ) \
1262 $(PRIVATE_ALL_OBJECTS) \
1263 -Wl,--whole-archive \
1264 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1265 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001266 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001267 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001268 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001269 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1270 -o $@ \
1271 $(PRIVATE_LDLIBS)
1272endef
1273endif
1274
1275define transform-host-o-to-shared-lib
1276@mkdir -p $(dir $@)
1277@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001278$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001279endef
1280
1281define transform-host-o-to-package
1282@mkdir -p $(dir $@)
1283@echo "host Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001284$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001285endef
1286
1287
1288###########################################################
1289## Commands for running gcc to link a shared library or package
1290###########################################################
1291
1292#echo >$@.vers "{"; \
1293#echo >>$@.vers " global:"; \
1294#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1295#echo >>$@.vers " local:"; \
1296#echo >>$@.vers " *;"; \
1297#echo >>$@.vers "};"; \
1298
1299# -Wl,--version-script=$@.vers \
1300
1301# ld just seems to be so finicky with command order that we allow
1302# it to be overriden en-masse see combo/linux-arm.make for an example.
1303ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1304define transform-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001305$(hide) $(PRIVATE_CXX) \
Ying Wang1a081002010-07-13 14:55:47 -07001306 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001307 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1308 -Wl,-rpath,\$$ORIGIN/../lib \
1309 -shared -Wl,-soname,$(notdir $@) \
1310 $(PRIVATE_LDFLAGS) \
Ying Wang1a081002010-07-13 14:55:47 -07001311 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001312 $(PRIVATE_ALL_OBJECTS) \
1313 -Wl,--whole-archive \
Ying Wang80e6cce2011-01-24 23:25:36 -08001314 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001315 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001316 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001317 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001318 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001319 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1320 -o $@ \
1321 $(PRIVATE_LDLIBS)
1322endef
1323endif
1324
1325define transform-o-to-shared-lib
1326@mkdir -p $(dir $@)
1327@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang4d2cc662014-01-16 12:36:34 -08001328$($(PRIVATE_2ND_ARCH_VAR_PREFIX)transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001329endef
1330
1331
1332###########################################################
1333## Commands for filtering a target executable or library
1334###########################################################
1335
The Android Open Source Project88b60792009-03-03 19:28:42 -08001336define transform-to-stripped
1337@mkdir -p $(dir $@)
1338@echo "target Strip: $(PRIVATE_MODULE) ($@)"
Ying Wang4d2cc662014-01-16 12:36:34 -08001339$(hide) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_STRIP_COMMAND)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001340endef
1341
The Android Open Source Project88b60792009-03-03 19:28:42 -08001342
1343###########################################################
1344## Commands for running gcc to link an executable
1345###########################################################
1346
1347ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1348define transform-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001349$(hide) $(PRIVATE_CXX) \
Ying Wangc6ffc002012-09-25 17:52:10 -07001350 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1351 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001352 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1353 -Wl,-rpath,\$$ORIGIN/../lib \
1354 $(PRIVATE_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001355 $(PRIVATE_ALL_OBJECTS) \
1356 -Wl,--whole-archive \
1357 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1358 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001359 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001360 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001361 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001362 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1363 -o $@ \
1364 $(PRIVATE_LDLIBS)
1365endef
1366endif
1367
1368define transform-o-to-executable
1369@mkdir -p $(dir $@)
1370@echo "target Executable: $(PRIVATE_MODULE) ($@)"
Ying Wangdd814bf2014-01-17 16:17:28 -08001371$($(PRIVATE_2ND_ARCH_VAR_PREFIX)transform-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001372endef
1373
1374
1375###########################################################
1376## Commands for running gcc to link a statically linked
1377## executable. In practice, we only use this on arm, so
1378## the other platforms don't have the
1379## transform-o-to-static-executable defined
1380###########################################################
1381
1382ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1383define transform-o-to-static-executable-inner
1384endef
1385endif
1386
1387define transform-o-to-static-executable
1388@mkdir -p $(dir $@)
1389@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
Ying Wangdd814bf2014-01-17 16:17:28 -08001390$($(PRIVATE_2ND_ARCH_VAR_PREFIX)transform-o-to-static-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001391endef
1392
1393
1394###########################################################
1395## Commands for running gcc to link a host executable
1396###########################################################
1397
1398ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1399define transform-host-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001400$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001401 $(PRIVATE_ALL_OBJECTS) \
1402 -Wl,--whole-archive \
1403 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1404 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001405 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001406 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001407 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001408 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
Conley Owensd9e7d252011-11-10 09:57:40 -08001409 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1410 -Wl,-rpath,\$$ORIGIN/../lib \
1411 $(HOST_GLOBAL_LD_DIRS) \
1412 $(PRIVATE_LDFLAGS) \
1413 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Logan Chiene6f65432013-12-10 19:07:41 +08001414 $(PRIVATE_HOST_GLOBAL_LDFLAGS) \
Joshua J. Drakeb0eafa22013-12-12 00:34:29 -06001415 -fPIE -pie \
Conley Owensd9e7d252011-11-10 09:57:40 -08001416 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001417 -o $@ \
1418 $(PRIVATE_LDLIBS)
1419endef
1420endif
1421
1422define transform-host-o-to-executable
1423@mkdir -p $(dir $@)
1424@echo "host Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001425$(transform-host-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001426endef
1427
1428
1429###########################################################
1430## Commands for running javac to make .class files
1431###########################################################
1432
1433#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1434#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1435
1436# TODO: Right now we generate the asset resources twice, first as part
1437# of generating the Java classes, then at the end when packaging the final
1438# assets. This should be changed to do one of two things: (1) Don't generate
1439# any resource files the first time, only create classes during that stage;
1440# or (2) Don't use the -c flag with the second stage, instead taking the
1441# resource files from the first stage as additional input. My original intent
1442# was to use approach (2), but this requires a little more work in the tool.
1443# Maybe we should just use approach (1).
1444
1445# This rule creates the R.java and Manifest.java files, both of which
Ying Wang4f1ab922011-03-15 13:19:30 -07001446# are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001447define create-resource-java-files
1448@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1449@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
Ying Wangc61d5932010-03-10 16:02:42 -08001450$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
Ying Wang4f1ab922011-03-15 13:19:30 -07001451 $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001452 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1453 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1454 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1455 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1456 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001457 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001458 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001459 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1460 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001461 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001462 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Ying Wang8c254822010-03-16 16:13:56 -07001463 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001464 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001465endef
1466
1467ifeq ($(HOST_OS),windows)
1468xlint_unchecked :=
1469else
Jeffrey Chyan7adbf972010-07-07 13:42:19 -05001470xlint_unchecked := -Xlint:unchecked
The Android Open Source Project88b60792009-03-03 19:28:42 -08001471endif
1472
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001473ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1474incremental_dex := --incremental
1475else
1476incremental_dex :=
1477endif
1478
The Android Open Source Project88b60792009-03-03 19:28:42 -08001479# emit-line, <word list>, <output file>
1480define emit-line
1481 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1482endef
1483
1484# dump-words-to-file, <word list>, <output file>
1485define dump-words-to-file
1486 @rm -f $(2)
1487 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1488 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1489 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1490 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1491 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1492 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1493 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1494 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1495 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1496 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1497 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1498 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1499 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1500 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1501 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1502 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1503 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1504 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1505 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1506 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
Jesse Wilson72c941a2010-05-04 16:33:49 -07001507 @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1508 @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1509 @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1510 @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1511 @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1512 @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001513endef
1514
1515# For a list of jar files, unzip them to a specified directory,
1516# but make sure that no META-INF files come along for the ride.
1517#
1518# $(1): files to unzip
1519# $(2): destination directory
1520define unzip-jar-files
1521 $(hide) for f in $(1); \
1522 do \
1523 if [ ! -f $$f ]; then \
1524 echo Missing file $$f; \
1525 exit 1; \
1526 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001527 unzip -qo $$f -d $(2); \
Ying Wang3a6f7582012-08-30 12:59:42 -07001528 done \
1529 $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,;rm -rf $(2)/META-INF)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001530endef
1531
Brian Carlstrom78269512010-12-10 12:10:24 -08001532# Common definition to invoke javac on the host and target.
1533#
1534# Some historical notes:
1535# - below we write the list of java files to java-source-list to avoid argument
1536# list length problems with Cygwin
1537# - we filter out duplicate java file names because eclipse's compiler
1538# doesn't like them.
1539#
1540# $(1): javac
1541# $(2): bootclasspath
1542define compile-java
Joe Onorato64d85d02009-04-09 19:31:12 -07001543$(hide) rm -f $@
1544$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001545$(hide) mkdir -p $(dir $@)
Joe Onorato64d85d02009-04-09 19:31:12 -07001546$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001547$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
Ying Wang015edd22011-01-20 15:01:56 -08001548$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001549$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Ying Wang015edd22011-01-20 15:01:56 -08001550 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001551fi
Ying Wang015edd22011-01-20 15:01:56 -08001552$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1553 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wange109a1d2011-12-12 17:52:03 -08001554$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1555 $(1) -encoding UTF-8 \
Brian Carlstrom78269512010-12-10 12:10:24 -08001556 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
Ying Wang057eba02012-10-18 10:54:49 -07001557 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001558 $(2) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001559 $(addprefix -classpath ,$(strip \
1560 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
Ying Wang057eba02012-10-18 10:54:49 -07001561 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001562 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001563 $(PRIVATE_JAVACFLAGS) \
Ying Wang015edd22011-01-20 15:01:56 -08001564 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
Ying Wange109a1d2011-12-12 17:52:03 -08001565 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1566fi
Joe Onorato0eccce92011-10-30 21:37:35 -07001567$(if $(PRIVATE_JAVA_LAYERS_FILE), $(hide) build/tools/java-layers.py \
1568 $(PRIVATE_JAVA_LAYERS_FILE) \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq,)
Ying Wang015edd22011-01-20 15:01:56 -08001569$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1570$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wang5758b8e2011-12-15 16:36:55 -08001571$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1572 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1573 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1574 | xargs rm -rf)
Jeff Brownae859f92013-07-17 20:29:51 -07001575$(if $(PRIVATE_JAR_PACKAGES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -mindepth 1 -type d \
1576 $(foreach pkg, $(PRIVATE_JAR_PACKAGES), \
1577 -not -path $(PRIVATE_CLASS_INTERMEDIATES_DIR)/$(subst .,/,$(pkg))) \
1578 | xargs rm -rf)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001579$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1580 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
Brian Carlstrom78269512010-12-10 12:10:24 -08001581endef
1582
1583define transform-java-to-classes.jar
1584@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1585$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001586endef
1587
Ying Wang015edd22011-01-20 15:01:56 -08001588# Override the above definitions if we want to do incremetal javac
1589ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1590define compile-java
1591$(hide) mkdir -p $(dir $@)
1592$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1593$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1594$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1595$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1596 newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1597 fi ; \
1598 find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1599 if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1600 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1601 fi
1602$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1603 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1604@echo "(Incremental) build source files:"
1605@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1606$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
Joe Onorato149dd912011-05-31 18:21:07 -07001607 $(1) -encoding UTF-8 \
Ying Wang015edd22011-01-20 15:01:56 -08001608 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
Ying Wang057eba02012-10-18 10:54:49 -07001609 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Ying Wang015edd22011-01-20 15:01:56 -08001610 $(2) \
1611 $(addprefix -classpath ,$(strip \
1612 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
Ying Wang057eba02012-10-18 10:54:49 -07001613 $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
Ying Wang015edd22011-01-20 15:01:56 -08001614 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1615 $(PRIVATE_JAVACFLAGS) \
1616 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1617 || ( exit 41 ) \
1618fi
1619$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1620$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1621$(hide) rm -f $@
Ying Wangae25ec12012-06-19 10:40:37 -07001622$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1623 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1624 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1625 | xargs rm -rf)
Jeff Brownae859f92013-07-17 20:29:51 -07001626$(if $(PRIVATE_JAR_PACKAGES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -mindepth 1 -type d \
1627 $(foreach pkg, $(PRIVATE_JAR_PACKAGES), \
1628 -not -path $(PRIVATE_CLASS_INTERMEDIATES_DIR)/$(subst .,/,$(pkg))) \
1629 | xargs rm -rf)
Ying Wang015edd22011-01-20 15:01:56 -08001630$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1631 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1632$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1633endef
1634
1635define transform-java-to-classes.jar
1636@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1637$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1638endef
1639endif # ENABLE_INCREMENTALJAVAC
1640
The Android Open Source Project88b60792009-03-03 19:28:42 -08001641define transform-classes.jar-to-emma
1642$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
Guang Zhu155afe32010-03-10 15:48:03 -08001643 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
Guang Zhu9cd3d8c2010-06-15 13:31:25 -07001644 $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001645endef
1646
1647#TODO: use a smaller -Xmx value for most libraries;
1648# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001649# 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 -08001650define transform-classes.jar-to-dex
1651@echo "target Dex: $(PRIVATE_MODULE)"
1652@mkdir -p $(dir $@)
Raphaelf6ff4c52009-08-18 14:43:32 -07001653$(hide) $(DX) \
Wink Saville29b3afa2012-01-30 15:30:10 -08001654 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001655 --dex --output=$@ \
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001656 $(incremental_dex) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001657 $(if $(NO_OPTIMIZE_DX), \
1658 --no-optimize) \
1659 $(if $(GENERATE_DEX_DEBUG), \
1660 --debug --verbose \
1661 --dump-to=$(@:.dex=.lst) \
1662 --dump-width=1000) \
1663 $(PRIVATE_DX_FLAGS) \
1664 $<
1665endef
1666
1667# Create a mostly-empty .jar file that we'll add to later.
1668# The MacOS jar tool doesn't like creating empty jar files,
1669# so we need to give it something.
1670define create-empty-package
1671@mkdir -p $(dir $@)
1672$(hide) touch $(dir $@)/dummy
1673$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1674$(hide) zip -qd $@ dummy
1675$(hide) rm $(dir $@)/dummy
1676endef
1677
1678#TODO: we kinda want to build different asset packages for
1679# different configurations, then combine them later (or something).
1680# Per-locale, etc.
1681# A list of dynamic and static parameters; build layers for
1682# dynamic params that lay over the static ones.
1683#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001684#Note that the version numbers are given to aapt as simple default
1685#values; applications can override these by explicitly stating
1686#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001687define add-assets-to-package
Ying Wangc61d5932010-03-10 16:02:42 -08001688$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
Ying Wang4f1ab922011-03-15 13:19:30 -07001689 $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
Dianne Hackborna0f464a2011-10-14 19:37:57 -07001690 $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001691 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1692 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1693 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1694 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001695 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1696 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wangf39752e2014-03-20 17:28:57 -07001697 $(if $(filter --product,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS))) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001698 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001699 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Jeff Hamiltonbb67d212010-02-05 22:36:42 -06001700 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001701 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001702 -F $@
1703endef
1704
The Android Open Source Project88b60792009-03-03 19:28:42 -08001705define add-jni-shared-libs-to-package
1706$(hide) rm -rf $(dir $@)lib
Jack Palevicha0ab29b2010-06-18 15:38:07 +08001707$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1708$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001709$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1710$(hide) rm -rf $(dir $@)lib
1711endef
1712
The Android Open Source Project88b60792009-03-03 19:28:42 -08001713#TODO: update the manifest to point to the dex file
1714define add-dex-to-package
Ying Wang957fea52010-09-23 11:48:38 -07001715$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
-b masterc3ccfee2013-01-23 16:54:32 -08001716$(hide) zip -qj $@ $(PRIVATE_DEX_FILE),\
Ying Wang6e7db382011-07-27 12:49:15 -07001717$(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \
1718cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \
-b masterc3ccfee2013-01-23 16:54:32 -08001719zip -qj $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001720endef
1721
Ying Wang85480622012-08-09 15:20:50 -07001722# Add java resources added by the current module.
1723#
The Android Open Source Project88b60792009-03-03 19:28:42 -08001724define add-java-resources-to-package
Ying Wang194a8ec2011-06-06 14:34:52 -07001725$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1726$(hide) jar uf $@ @$(dir $@)jar-arg-list
1727@rm -f $(dir $@)jar-arg-list
The Android Open Source Project88b60792009-03-03 19:28:42 -08001728endef
1729
Ying Wang85480622012-08-09 15:20:50 -07001730# Add java resources carried by static Java libraries.
1731#
1732define add-carried-java-resources
1733$(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \
1734 java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \
1735 | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \
1736 if [ -n "$$java_res_jar_flags" ] ; then \
1737 echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \
1738 jar uf $@ $$java_res_jar_flags; \
1739 fi; \
1740fi
1741endef
1742
The Android Open Source Project88b60792009-03-03 19:28:42 -08001743# Sign a package using the specified key/cert.
1744#
1745define sign-package
1746$(hide) mv $@ $@.unsigned
1747$(hide) java -jar $(SIGNAPK_JAR) \
Ying Wang31df0682012-11-13 10:55:28 -08001748 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) \
1749 $(PRIVATE_ADDITIONAL_CERTIFICATES) $@.unsigned $@.signed
The Android Open Source Project88b60792009-03-03 19:28:42 -08001750$(hide) mv $@.signed $@
1751endef
1752
1753# Align STORED entries of a package on 4-byte boundaries
1754# to make them easier to mmap.
1755#
1756define align-package
1757$(hide) mv $@ $@.unaligned
1758$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1759$(hide) mv $@.aligned $@
1760endef
1761
1762define install-dex-debug
1763$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1764 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1765 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1766 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1767 fi
1768$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1769 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1770 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1771 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1772 fi
1773endef
1774
1775# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1776# new prebuilt rules to work, we should change this to copy the
1777# resources to the out directory and then copy the resources.
1778
Brian Carlstrom78269512010-12-10 12:10:24 -08001779# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1780# in transform-java-to-classes for the sake of vm-tests.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001781define transform-host-java-to-package
1782@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Ying Wang015edd22011-01-20 15:01:56 -08001783$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Ying Wang194a8ec2011-06-06 14:34:52 -07001784$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001785endef
1786
1787###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001788## Commands for copying files
1789###########################################################
1790
1791# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1792# $(1): source header
1793# $(2): destination header
1794define copy-one-header
1795$(2): $(1)
1796 @echo "Header: $$@"
1797 $$(copy-file-to-new-target-with-cp)
1798endef
1799
1800# Define a rule to copy a file. For use via $(eval).
1801# $(1): source file
1802# $(2): destination file
1803define copy-one-file
1804$(2): $(1) | $(ACP)
1805 @echo "Copy: $$@"
1806 $$(copy-file-to-target)
1807endef
1808
Joe Onoratoe44705a2012-05-17 17:12:04 -07001809# Copies many files.
1810# $(1): The files to copy. Each entry is a ':' separated src:dst pair
1811# Evaluates to the list of the dst files (ie suitable for a dependency list)
1812define copy-many-files
1813$(foreach f, $(1), $(strip \
1814 $(eval _cmf_tuple := $(subst :, ,$(f))) \
1815 $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \
1816 $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \
1817 $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \
1818 $(_cmf_dest)))
1819endef
1820
Ying Wang3ceecfa2012-05-14 14:39:00 -07001821# Copy the file only if it's a well-formed xml file. For use via $(eval).
1822# $(1): source file
1823# $(2): destination file, must end with .xml.
1824define copy-xml-file-checked
1825$(2): $(1) | $(ACP)
1826 @echo "Copy xml: $$@"
1827 $(hide) xmllint $$< >/dev/null # Don't print the xml file to stdout.
1828 $$(copy-file-to-target)
1829endef
1830
The Android Open Source Project88b60792009-03-03 19:28:42 -08001831# The -t option to acp and the -p option to cp is
1832# required for OSX. OSX has a ridiculous restriction
1833# where it's an error for a .a file's modification time
1834# to disagree with an internal timestamp, and this
1835# macro is used to install .a files (among other things).
1836
1837# Copy a single file from one place to another,
1838# preserving permissions and overwriting any existing
1839# file.
Ian Rogers76a6dc32012-10-01 16:36:23 -07001840# We disable the "-t" option for acp cannot handle
Ying Wang84ed6fa2011-01-18 17:21:20 -08001841# high resolution timestamp correctly on file systems like ext4.
1842# Therefore copy-file-to-target is the same as copy-file-to-new-target.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001843define copy-file-to-target
1844@mkdir -p $(dir $@)
Ying Wang84ed6fa2011-01-18 17:21:20 -08001845$(hide) $(ACP) -fp $< $@
The Android Open Source Project88b60792009-03-03 19:28:42 -08001846endef
1847
1848# The same as copy-file-to-target, but use the local
1849# cp command instead of acp.
1850define copy-file-to-target-with-cp
1851@mkdir -p $(dir $@)
1852$(hide) cp -fp $< $@
1853endef
1854
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001855# The same as copy-file-to-target, but use the zipalign tool to do so.
1856define copy-file-to-target-with-zipalign
1857@mkdir -p $(dir $@)
1858$(hide) $(ZIPALIGN) -f 4 $< $@
1859endef
1860
Doug Zongker1046d202009-08-06 13:02:19 -07001861# The same as copy-file-to-target, but strip out "# comment"-style
1862# comments (for config files and such).
1863define copy-file-to-target-strip-comments
1864@mkdir -p $(dir $@)
1865$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1866endef
1867
The Android Open Source Project88b60792009-03-03 19:28:42 -08001868# The same as copy-file-to-target, but don't preserve
1869# the old modification time.
1870define copy-file-to-new-target
1871@mkdir -p $(dir $@)
1872$(hide) $(ACP) -fp $< $@
1873endef
1874
1875# The same as copy-file-to-new-target, but use the local
1876# cp command instead of acp.
1877define copy-file-to-new-target-with-cp
1878@mkdir -p $(dir $@)
1879$(hide) cp -f $< $@
1880endef
1881
1882# Copy a prebuilt file to a target location.
1883define transform-prebuilt-to-target
1884@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1885$(copy-file-to-target)
1886endef
1887
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001888# Copy a prebuilt file to a target location, using zipalign on it.
1889define transform-prebuilt-to-target-with-zipalign
1890@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1891$(copy-file-to-target-with-zipalign)
1892endef
1893
Doug Zongker1046d202009-08-06 13:02:19 -07001894# Copy a prebuilt file to a target location, stripping "# comment" comments.
1895define transform-prebuilt-to-target-strip-comments
1896@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1897$(copy-file-to-target-strip-comments)
1898endef
1899
The Android Open Source Project88b60792009-03-03 19:28:42 -08001900###########################################################
1901## On some platforms (MacOS), after copying a static
1902## library, ranlib must be run to update an internal
1903## timestamp!?!?!
1904###########################################################
1905
1906ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1907define transform-host-ranlib-copy-hack
1908 $(hide) ranlib $@ || true
1909endef
1910else
1911define transform-host-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001912@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001913endef
1914endif
1915
1916ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1917define transform-ranlib-copy-hack
1918 $(hide) ranlib $@
1919endef
1920else
1921define transform-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001922@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001923endef
1924endif
1925
1926
1927###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001928## Commands to call Proguard
1929###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001930define transform-jar-to-proguard
Ying Wang7311a342013-08-21 18:32:49 -07001931@echo Proguard: $@
Mihail Dumitrescu4df82b32014-02-07 15:18:59 +00001932$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) \
1933 $(addprefix -injars , $(PRIVATE_EXTRA_INPUT_JAR))
Ying Wang3b2bdf12010-02-01 09:51:23 -08001934endef
1935
Ying Wang3b2bdf12010-02-01 09:51:23 -08001936###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001937## Stuff source generated from one-off tools
1938###########################################################
1939
1940define transform-generated-source
1941@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1942@mkdir -p $(dir $@)
1943$(hide) $(PRIVATE_CUSTOM_TOOL)
1944endef
1945
1946
1947###########################################################
1948## Assertions about attributes of the target
1949###########################################################
1950
1951# $(1): The file to check
1952ifndef get-file-size
1953$(error HOST_OS must define get-file-size)
1954endif
1955
Doug Zongker4647f122009-07-02 09:00:54 -07001956# Convert a partition data size (eg, as reported in /proc/mtd) to the
1957# size of the image used to flash that partition (which includes a
Lars Svensson9cb8c282010-12-06 15:24:58 +01001958# spare area for each page).
Doug Zongker4647f122009-07-02 09:00:54 -07001959# $(1): the partition data size
1960define image-size-from-data-size
Ying Wang4a2ecaf2011-02-09 17:24:27 -08001961$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1962 ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1963$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1964$(eval _isfds_value :=))
Doug Zongker4647f122009-07-02 09:00:54 -07001965endef
1966
1967# $(1): The file(s) to check (often $@)
1968# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001969# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001970#
1971# If $(2) is empty, evaluates to "true"
1972#
1973# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1974# is left over after the image has been flashed. Round the 1% up to the
1975# next whole flash block size.
1976define assert-max-file-size
1977$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001978 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1979 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001980 printname=$$(echo -n "$(1)" | tr " " +); \
Doug Zongker4647f122009-07-02 09:00:54 -07001981 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001982 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001983 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001984 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001985 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001986 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001987 twoblocks=$$((img_blocksize * 2)); \
1988 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001989 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1990 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001991 maxsize=$$(($(2) - reserve)); \
Ying Wang99bcbeb2011-12-02 10:34:45 -08001992 echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
Doug Zongker4647f122009-07-02 09:00:54 -07001993 if [ "$$total" -gt "$$maxsize" ]; then \
1994 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1995 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001996 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001997 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001998 fi \
1999 , \
2000 true \
2001 )
2002endef
2003
Doug Zongker8510a1e2009-08-07 16:38:08 -07002004# Like assert-max-file-size, but the second argument is a partition
2005# size, which we'll convert to a max image size before checking it
2006# against the files.
2007#
2008# $(1): The file(s) to check (often $@)
2009# $(2): The partition size.
2010define assert-max-image-size
2011$(if $(2), \
2012 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
2013 true)
2014endef
2015
Doug Zongkere01100c2009-06-19 17:12:18 -07002016
2017###########################################################
2018## Define device-specific radio files
2019###########################################################
Ying Wang94de1eb2013-07-26 12:19:20 -07002020INSTALLED_RADIOIMAGE_TARGET :=
Doug Zongkere01100c2009-06-19 17:12:18 -07002021
2022# Copy a radio image file to the output location, and add it to
2023# INSTALLED_RADIOIMAGE_TARGET.
2024# $(1): filename
2025define add-radio-file
Doug Zongker14833602010-02-02 13:12:04 -08002026 $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
Doug Zongkere01100c2009-06-19 17:12:18 -07002027endef
2028define add-radio-file-internal
Doug Zongker14833602010-02-02 13:12:04 -08002029INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
Doug Zongker14833602010-02-02 13:12:04 -08002030$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
Doug Zongkere01100c2009-06-19 17:12:18 -07002031 $$(transform-prebuilt-to-target)
2032endef
2033
Doug Zongker9296f092012-03-20 16:42:22 -07002034# Version of add-radio-file that also arranges for the version of the
2035# file to be checked against the contents of
2036# $(TARGET_BOARD_INFO_FILE).
2037# $(1): filename
2038# $(2): name of version variable in board-info (eg, "version-baseband")
2039define add-radio-file-checked
2040 $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
2041endef
2042define add-radio-file-checked-internal
2043INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
2044BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
2045$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
2046 $$(transform-prebuilt-to-target)
2047endef
2048
Doug Zongkere01100c2009-06-19 17:12:18 -07002049
The Android Open Source Project88b60792009-03-03 19:28:42 -08002050###########################################################
Joe Onorato899e62a2010-02-04 17:37:21 -08002051# Override the package defined in $(1), setting the
2052# variables listed below differently.
2053#
2054# $(1): The makefile to override (relative to the source
2055# tree root)
2056# $(2): Old LOCAL_PACKAGE_NAME value.
2057# $(3): New LOCAL_PACKAGE_NAME value.
Ying Wang3dae0ee2010-09-02 15:41:01 -07002058# $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
2059# $(5): New LOCAL_CERTIFICATE value.
2060# $(6): New LOCAL_INSTRUMENTATION_FOR value.
2061# $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
Joe Onorato899e62a2010-02-04 17:37:21 -08002062#
2063# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
2064# clear_vars.mk.
2065###########################################################
2066define inherit-package
Ying Wang3dae0ee2010-09-02 15:41:01 -07002067 $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
Joe Onorato899e62a2010-02-04 17:37:21 -08002068endef
2069
2070define inherit-package-internal
2071 LOCAL_PACKAGE_OVERRIDES \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002072 := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
Joe Onorato899e62a2010-02-04 17:37:21 -08002073 include $(1)
2074 LOCAL_PACKAGE_OVERRIDES \
2075 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
2076endef
2077
2078# To be used with inherit-package above
2079# Evalutes to true if the package was overridden
2080define set-inherited-package-variables
2081$(strip $(call set-inherited-package-variables-internal))
2082endef
2083
2084define keep-or-override
2085$(eval $(1) := $(if $(2),$(2),$($(1))))
2086endef
2087
2088define set-inherited-package-variables-internal
2089 $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2090 $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2091 $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2092 $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2093 $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002094 $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2095 $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2096 $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
Joe Onorato899e62a2010-02-04 17:37:21 -08002097 $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2098 true \
2099 ,)
2100endef
2101
Ying Wang000e89a2012-04-30 15:48:27 -07002102###########################################################
2103## Expand a module name list with REQUIRED modules
2104###########################################################
2105# $(1): The variable name that holds the initial module name list.
2106# the variable will be modified to hold the expanded results.
2107# $(2): The initial module name list.
2108# Returns empty string (maybe with some whitespaces).
2109define expand-required-modules
2110$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2111 $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2112$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2113 $(call expand-required-modules,$(1),$(_erm_new_modules)))
2114endef
Joe Onorato899e62a2010-02-04 17:37:21 -08002115
2116###########################################################
Ying Wangc065da22012-11-14 15:57:07 -08002117## API Check
2118###########################################################
2119
2120# eval this to define a rule that runs apicheck.
2121#
2122# Args:
2123# $(1) target
2124# $(2) stable api file
2125# $(3) api file to be tested
2126# $(4) arguments for apicheck
2127# $(5) command to run if apicheck failed
2128# $(6) target dependent on this api check
2129# $(7) additional dependencies
2130define check-api
2131$(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp: $(2) $(3) $(APICHECK) $(7)
2132 @echo "Checking API:" $(1)
2133 $(hide) ( $(APICHECK_COMMAND) $(4) $(2) $(3) || ( $(5) ; exit 38 ) )
2134 $(hide) mkdir -p $$(dir $$@)
2135 $(hide) touch $$@
2136$(6): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp
2137endef
2138
Ying Wang63d94fa2012-12-13 18:23:01 -08002139## Whether to build from source if prebuilt alternative exists
2140###########################################################
2141# $(1): module name
2142# $(2): LOCAL_PATH
2143# Expands to empty string if not from source.
2144ifeq (true,$(ANDROID_BUILD_FROM_SOURCE))
2145define if-build-from-source
2146true
2147endef
2148else
2149define if-build-from-source
2150$(if $(filter $(ANDROID_NO_PREBUILT_MODULES),$(1))$(filter \
2151 $(addsuffix %,$(ANDROID_NO_PREBUILT_PATHS)),$(2)),true)
2152endef
2153endif
2154
2155# Include makefile $(1) if build from source for module $(2)
2156# $(1): the makefile to include
2157# $(2): module name
2158# $(3): LOCAL_PATH
2159define include-if-build-from-source
2160$(if $(call if-build-from-source,$(2),$(3)),$(eval include $(1)))
2161endef
2162
Ying Wangc065da22012-11-14 15:57:07 -08002163###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08002164## Other includes
2165###########################################################
2166
2167# -----------------------------------------------------------------
2168# Rules and functions to help copy important files to DIST_DIR
2169# when requested.
2170include $(BUILD_SYSTEM)/distdir.mk
2171
Marie Lennerhagen9e5efce2010-10-20 13:41:59 +02002172# Include any vendor specific definitions.mk file
2173-include $(TOPDIR)vendor/*/build/core/definitions.mk
2174
The Android Open Source Project88b60792009-03-03 19:28:42 -08002175# broken:
2176# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2177
2178###########################################################
2179## Misc notes
2180###########################################################
2181
2182#DEPDIR = .deps
2183#df = $(DEPDIR)/$(*F)
2184
2185#SRCS = foo.c bar.c ...
2186
2187#%.o : %.c
2188# @$(MAKEDEPEND); \
2189# cp $(df).d $(df).P; \
2190# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2191# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2192# rm -f $(df).d
2193# $(COMPILE.c) -o $@ $<
2194
2195#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2196
2197
2198#%.o : %.c
2199# $(COMPILE.c) -MD -o $@ $<
2200# @cp $*.d $*.P; \
2201# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2202# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2203# rm -f $*.d