blob: c328e586659836f5344417cbfa3a9eda57230135 [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
Elliott Hughesb248bf82015-07-08 13:13:37 -070019# them in Android.mk files. Not meant for header file include directories,
20# despite the fact that it was historically used for that!
21#
22# If you want this for a library's header files, use LOCAL_EXPORT_C_INCLUDES
23# instead. Then users of the library don't have to do anything --- they'll
24# have the correct header files added to their include path automatically.
25#
26
The Android Open Source Project88b60792009-03-03 19:28:42 -080027#
28# TODO: Allow each project to define stuff like this before the per-module
29# Android.mk files are included, so we don't need to have a big central
30# list.
31#
32
33#
34# A mapping from shorthand names to include directories.
35#
36pathmap_INCL := \
Eino-Ville Talvala11d3c442012-04-05 17:09:18 -070037 camera:system/media/camera/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080038 frameworks-base:frameworks/base/include \
Mathias Agopianbd118e62012-03-05 16:04:31 -080039 frameworks-native:frameworks/native/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080040 libhardware:hardware/libhardware/include \
41 libhardware_legacy:hardware/libhardware_legacy/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080042 libril:hardware/ril/include \
Mathias Agopianfb956ef2012-03-05 18:45:37 -080043 opengl-tests-includes:frameworks/native/opengl/tests/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080044 recovery:bootable/recovery \
Eric Laurent99acb9c2011-06-16 20:53:25 -070045 system-core:system/core/include \
Rom Lemarchand93dda7c2015-04-03 15:09:11 -070046 audio:system/media/audio/include \
Glenn Kastenfefc17f2012-03-13 15:23:33 -070047 audio-effects:system/media/audio_effects/include \
48 audio-utils:system/media/audio_utils/include \
Simon Wilson3b7d7b42013-01-15 16:03:59 -080049 audio-route:system/media/audio_route/include \
Glenn Kastend9054912012-03-26 17:50:44 -070050 wilhelm:frameworks/wilhelm/include \
51 wilhelm-ut:frameworks/wilhelm/src/ut \
Dan Willemsen208d3c22016-09-12 16:10:20 -070052 mediandk:frameworks/av/media/ndk/
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
65#
66# Many modules expect to be able to say "#include <jni.h>",
67# so make it easy for them to find the correct path.
68#
Elliott Hughes09c255d2015-09-24 09:02:19 -070069JNI_H_INCLUDE := libnativehelper/include/nativehelper
The Android Open Source Project88b60792009-03-03 19:28:42 -080070
71#
72# A list of all source roots under frameworks/base, which will be
73# built into the android.jar.
74#
75FRAMEWORKS_BASE_SUBDIRS := \
76 $(addsuffix /java, \
77 core \
78 graphics \
The Android Open Source Project88b60792009-03-03 19:28:42 -080079 location \
80 media \
Marius Rennfe97fe92012-03-27 10:46:13 -070081 media/mca/effect \
82 media/mca/filterfw \
83 media/mca/filterpacks \
aimitakeshi2bdf2652010-07-27 08:34:47 +090084 drm \
The Android Open Source Project88b60792009-03-03 19:28:42 -080085 opengl \
86 sax \
Santos Cordon64404702013-12-17 20:26:30 -080087 telecomm \
The Android Open Source Project88b60792009-03-03 19:28:42 -080088 telephony \
The Android Open Source Project88b60792009-03-03 19:28:42 -080089 wifi \
Chung-yih Wang67647752009-06-10 23:08:03 +080090 keystore \
Tim Murray55445192013-12-17 13:27:28 -080091 rs \
The Android Open Source Project88b60792009-03-03 19:28:42 -080092 )
93
94#
95# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
96# the root of the tree. This currently needs to be here so that other libraries
97# and apps can find the .aidl files in the framework, though we should really
98# figure out a better way to do this.
99#
100FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
101 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800102
103#
104# A list of all source roots under frameworks/support.
105#
106FRAMEWORKS_SUPPORT_SUBDIRS := \
Xavier Ducrohetef046822014-03-26 10:50:38 -0700107 annotations \
Alan Viveretted2fc8092016-07-02 19:40:37 -0400108 compat \
109 media-compat \
110 fragment \
111 core-ui \
Kirill Grouchnikov3f06eba2016-07-18 10:26:46 -0400112 core-utils \
Xavier Ducrohetb3ae5352014-06-17 12:12:41 -0700113 v7/gridlayout \
Chet Haasef3889932014-09-28 09:08:40 -0700114 v7/cardview \
Jeff Brown9977ddf2013-07-09 00:35:00 +0000115 v7/mediarouter \
Chet Haasef3889932014-09-28 09:08:40 -0700116 v7/palette \
Tim Kilbourn8acc8da2014-03-18 13:37:51 -0700117 v13 \
Chris Banes8f168d12015-04-28 12:01:49 +0100118 v17/leanback \
Filip Gruszczynski8c97e172015-05-11 11:58:01 -0700119 design \
Jose Limab222b6e2015-05-21 16:26:20 -0700120 percent \
Tony Mantlerc8b469a2015-07-30 11:22:24 -0700121 recommendation \
Alan Viverette9c535432016-09-09 16:39:18 -0400122 transition \
Tony Mantlerc8b469a2015-07-30 11:22:24 -0700123 v7/preference \
124 v14/preference \
Benoit Lize0e14dcc2015-07-31 17:35:58 +0200125 v17/preference-leanback \
Alan Viverettee5368fa2016-05-13 14:17:33 -0400126 documents-archive \
Benoit Lize0e14dcc2015-07-31 17:35:58 +0200127 customtabs
Maurice Chu664035f2013-10-16 14:30:42 -0700128
129#
Yohann Roussel100aba52014-07-17 16:52:58 +0200130# A list of all source roots under frameworks/multidex.
Maurice Chu664035f2013-10-16 14:30:42 -0700131#
132FRAMEWORKS_MULTIDEX_SUBDIRS := \
Yohann Roussel5679e352014-07-24 17:24:30 +0200133 multidex/library/src \
134 multidex/instrumentation/src
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800135
136#
137# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
138# the root of the tree.
139#
140FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
Maurice Chu664035f2013-10-16 14:30:42 -0700141 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \
Yigit Boyarfa358f72015-04-29 19:34:56 -0700142 $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \
Alan Viverette0da362d2016-07-26 13:06:37 -0400143 frameworks/rs/support \
Alan Viverette55e80ef2016-05-13 14:15:25 -0400144 frameworks/support/graphics/drawable/animated \
145 frameworks/support/graphics/drawable/static \
Chris Banesb916a5b2015-08-13 09:38:12 +0100146 frameworks/support/v7/appcompat/src \
Yigit Boyarfa358f72015-04-29 19:34:56 -0700147 frameworks/support/v7/recyclerview/src
Jeff Brownfcf2a112013-04-24 20:36:07 -0700148
149#
150# A list of support library modules.
151#
152FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
Maurice Chu664035f2013-10-16 14:30:42 -0700153 $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
Alan Viveretted2fc8092016-07-02 19:40:37 -0400154 android-support-v4 \
Alan Viverette55e80ef2016-05-13 14:15:25 -0400155 android-support-vectordrawable \
156 android-support-animatedvectordrawable \
Chris Banesb916a5b2015-08-13 09:38:12 +0100157 android-support-v7-appcompat \
Yigit Boyarfa358f72015-04-29 19:34:56 -0700158 android-support-v7-recyclerview \
Alan Viverette0da362d2016-07-26 13:06:37 -0400159 android-support-v8-renderscript \
Yohann Roussel5679e352014-07-24 17:24:30 +0200160 android-support-multidex \
161 android-support-multidex-instrumentation
Jeff Brownfcf2a112013-04-24 20:36:07 -0700162
George Mount5349e7d2015-07-13 16:44:44 -0700163#
164# A list of all documented source roots under frameworks/data-binding.
165#
166FRAMEWORKS_DATA_BINDING_SUBDIRS := \
167 baseLibrary/src/main \
Yigit Boyar5b97d082016-01-20 04:17:31 -0800168 extensions/library/src/main \
169 extensions/library/src/doc
George Mount5349e7d2015-07-13 16:44:44 -0700170
171#
172# A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from
173# the root of the tree.
174#
175FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \
176 $(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS))
177