blob: a23aafca413166c1c6d8fd086d6564deeb22187e [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# A central place to define mappings to paths, to avoid hard-coding
19# them in Android.mk files.
20#
21# TODO: Allow each project to define stuff like this before the per-module
22# Android.mk files are included, so we don't need to have a big central
23# list.
24#
25
26#
27# A mapping from shorthand names to include directories.
28#
29pathmap_INCL := \
Eino-Ville Talvala11d3c442012-04-05 17:09:18 -070030 camera:system/media/camera/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080031 frameworks-base:frameworks/base/include \
Mathias Agopianbd118e62012-03-05 16:04:31 -080032 frameworks-native:frameworks/native/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080033 libc:bionic/libc/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080034 libhardware:hardware/libhardware/include \
35 libhardware_legacy:hardware/libhardware_legacy/include \
36 libhost:build/libs/host/include \
37 libm:bionic/libm/include \
Elliott Hughes89898df2012-05-03 16:37:40 -070038 libnativehelper:libnativehelper/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080039 libpagemap:system/extras/libpagemap/include \
40 libril:hardware/ril/include \
41 libstdc++:bionic/libstdc++/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080042 mkbootimg:system/core/mkbootimg \
Mathias Agopianfb956ef2012-03-05 18:45:37 -080043 opengl-tests-includes:frameworks/native/opengl/tests/include \
Eric Laurent99acb9c2011-06-16 20:53:25 -070044 system-core:system/core/include \
Rom Lemarchand93dda7c2015-04-03 15:09:11 -070045 audio:system/media/audio/include \
Glenn Kastenfefc17f2012-03-13 15:23:33 -070046 audio-effects:system/media/audio_effects/include \
47 audio-utils:system/media/audio_utils/include \
Simon Wilson3b7d7b42013-01-15 16:03:59 -080048 audio-route:system/media/audio_route/include \
Glenn Kastend9054912012-03-26 17:50:44 -070049 wilhelm:frameworks/wilhelm/include \
50 wilhelm-ut:frameworks/wilhelm/src/ut \
Marco Nelissen863c9e92014-04-08 09:18:14 -070051 mediandk:frameworks/av/media/ndk/ \
Eric Laurent99acb9c2011-06-16 20:53:25 -070052 speex:external/speex/include
The Android Open Source Project88b60792009-03-03 19:28:42 -080053
54#
55# Returns the path to the requested module's include directory,
56# relative to the root of the source tree. Does not handle external
57# modules.
58#
59# $(1): a list of modules (or other named entities) to find the includes for
60#
61define include-path-for
62$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
63endef
64
Tom Marshall076df242014-09-18 09:45:33 -070065# Enter project path into pathmap
66#
67# $(1): name
68# $(2): path
69#
70define project-set-path
71$(eval pathmap_PROJ += $(1):$(2))
72endef
73
74# Enter variant project path into pathmap
75#
76# $(1): name
77# $(2): variable to check
78# $(3): base path
79#
80define project-set-path-variant
81 $(call project-set-path,$(1),$(strip \
82 $(if $($(2)), \
83 $(3)-$($(2)), \
84 $(3))))
85endef
86
87# Returns the path to the requested module's include directory,
88# relative to the root of the source tree.
89#
90# $(1): a list of modules (or other named entities) to find the projects for
91define project-path-for
92$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_PROJ))))
93endef
94
The Android Open Source Project88b60792009-03-03 19:28:42 -080095#
96# Many modules expect to be able to say "#include <jni.h>",
97# so make it easy for them to find the correct path.
98#
99JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper
100
101#
102# A list of all source roots under frameworks/base, which will be
103# built into the android.jar.
104#
105FRAMEWORKS_BASE_SUBDIRS := \
106 $(addsuffix /java, \
107 core \
108 graphics \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800109 location \
110 media \
Marius Rennfe97fe92012-03-27 10:46:13 -0700111 media/mca/effect \
112 media/mca/filterfw \
113 media/mca/filterpacks \
aimitakeshi2bdf2652010-07-27 08:34:47 +0900114 drm \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800115 opengl \
116 sax \
Santos Cordon64404702013-12-17 20:26:30 -0800117 telecomm \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800118 telephony \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800119 wifi \
Chung-yih Wang67647752009-06-10 23:08:03 +0800120 keystore \
Tim Murray55445192013-12-17 13:27:28 -0800121 rs \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800122 )
123
124#
125# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
126# the root of the tree. This currently needs to be here so that other libraries
127# and apps can find the .aidl files in the framework, though we should really
128# figure out a better way to do this.
129#
130FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
131 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800132
133#
134# A list of all source roots under frameworks/support.
135#
136FRAMEWORKS_SUPPORT_SUBDIRS := \
Xavier Ducrohetef046822014-03-26 10:50:38 -0700137 annotations \
Scott Mainaf44e902013-05-28 14:53:22 -0700138 v4 \
Xavier Ducrohetb3ae5352014-06-17 12:12:41 -0700139 v7/gridlayout \
Chet Haasef3889932014-09-28 09:08:40 -0700140 v7/cardview \
Jeff Brown9977ddf2013-07-09 00:35:00 +0000141 v7/mediarouter \
Chet Haasef3889932014-09-28 09:08:40 -0700142 v7/palette \
Scott Main1a2709f2013-09-12 16:47:05 -0700143 v8/renderscript \
Tim Kilbourn8acc8da2014-03-18 13:37:51 -0700144 v13 \
Chris Banes8f168d12015-04-28 12:01:49 +0100145 v17/leanback \
Filip Gruszczynski8c97e172015-05-11 11:58:01 -0700146 design \
Jose Limab222b6e2015-05-21 16:26:20 -0700147 percent \
Tony Mantlerc8b469a2015-07-30 11:22:24 -0700148 recommendation \
149 v7/preference \
150 v14/preference \
Benoit Lize0e14dcc2015-07-31 17:35:58 +0200151 v17/preference-leanback \
152 customtabs
Maurice Chu664035f2013-10-16 14:30:42 -0700153
154#
Yohann Roussel100aba52014-07-17 16:52:58 +0200155# A list of all source roots under frameworks/multidex.
Maurice Chu664035f2013-10-16 14:30:42 -0700156#
157FRAMEWORKS_MULTIDEX_SUBDIRS := \
Yohann Roussel5679e352014-07-24 17:24:30 +0200158 multidex/library/src \
159 multidex/instrumentation/src
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800160
161#
162# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
163# the root of the tree.
164#
165FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
Maurice Chu664035f2013-10-16 14:30:42 -0700166 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \
Yigit Boyarfa358f72015-04-29 19:34:56 -0700167 $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \
Chris Banesb916a5b2015-08-13 09:38:12 +0100168 frameworks/support/v7/appcompat/src \
Yigit Boyarfa358f72015-04-29 19:34:56 -0700169 frameworks/support/v7/recyclerview/src
Jeff Brownfcf2a112013-04-24 20:36:07 -0700170
171#
172# A list of support library modules.
173#
174FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
Maurice Chu664035f2013-10-16 14:30:42 -0700175 $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
Chris Banesb916a5b2015-08-13 09:38:12 +0100176 android-support-v7-appcompat \
Yigit Boyarfa358f72015-04-29 19:34:56 -0700177 android-support-v7-recyclerview \
Yohann Roussel5679e352014-07-24 17:24:30 +0200178 android-support-multidex \
179 android-support-multidex-instrumentation
Jeff Brownfcf2a112013-04-24 20:36:07 -0700180
George Mount5349e7d2015-07-13 16:44:44 -0700181#
182# A list of all documented source roots under frameworks/data-binding.
183#
184FRAMEWORKS_DATA_BINDING_SUBDIRS := \
185 baseLibrary/src/main \
186 library/src/main \
187 library/src/doc
188
189#
190# A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from
191# the root of the tree.
192#
193FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \
194 $(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS))
195