pathmap.mk revision 149b22008f3a002822a90ddead956f0c7936e94d
1#
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. 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
27#
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 := \
37    camera:system/media/camera/include \
38    frameworks-base:frameworks/base/include \
39    frameworks-native:frameworks/native/include \
40    libhardware:hardware/libhardware/include \
41    libhardware_legacy:hardware/libhardware_legacy/include \
42    libril:hardware/ril/include \
43    opengl-tests-includes:frameworks/native/opengl/tests/include \
44    recovery:bootable/recovery \
45    system-core:system/core/include \
46    audio:system/media/audio/include \
47    audio-effects:system/media/audio_effects/include \
48    audio-utils:system/media/audio_utils/include \
49    audio-route:system/media/audio_route/include \
50    wilhelm:frameworks/wilhelm/include \
51    wilhelm-ut:frameworks/wilhelm/src/ut \
52    mediandk:frameworks/av/media/ndk/ \
53    speex:external/speex/include
54
55#
56# Returns the path to the requested module's include directory,
57# relative to the root of the source tree.  Does not handle external
58# modules.
59#
60# $(1): a list of modules (or other named entities) to find the includes for
61#
62define include-path-for
63$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
64endef
65
66#
67# Many modules expect to be able to say "#include <jni.h>",
68# so make it easy for them to find the correct path.
69#
70JNI_H_INCLUDE := libnativehelper/include/nativehelper
71
72#
73# A list of all source roots under frameworks/base, which will be
74# built into the android.jar.
75#
76FRAMEWORKS_BASE_SUBDIRS := \
77	$(addsuffix /java, \
78	    core \
79	    graphics \
80	    location \
81	    media \
82	    media/mca/effect \
83	    media/mca/filterfw \
84	    media/mca/filterpacks \
85	    drm \
86	    opengl \
87	    sax \
88	    telecomm \
89	    telephony \
90	    wifi \
91	    keystore \
92	    rs \
93	 )
94
95#
96# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
97# the root of the tree.  This currently needs to be here so that other libraries
98# and apps can find the .aidl files in the framework, though we should really
99# figure out a better way to do this.
100#
101FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
102	$(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
103
104#
105# A list of all source roots under frameworks/support.
106#
107FRAMEWORKS_SUPPORT_SUBDIRS := \
108        annotations \
109        v4 \
110        v7/gridlayout \
111        v7/cardview \
112        v7/mediarouter \
113        v7/palette \
114        v8/renderscript \
115        v13 \
116        v17/leanback \
117        design \
118        percent \
119        recommendation \
120        v7/preference \
121        v14/preference \
122        v17/preference-leanback \
123        customtabs
124
125#
126# A list of all source roots under frameworks/multidex.
127#
128FRAMEWORKS_MULTIDEX_SUBDIRS := \
129        multidex/library/src \
130        multidex/instrumentation/src
131
132#
133# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
134# the root of the tree.
135#
136FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
137	$(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \
138	$(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \
139	frameworks/support/v7/appcompat/src \
140	frameworks/support/v7/recyclerview/src
141
142#
143# A list of support library modules.
144#
145FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
146    $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
147    android-support-v7-appcompat \
148    android-support-v7-recyclerview \
149    android-support-multidex \
150    android-support-multidex-instrumentation
151
152#
153# A list of all documented source roots under frameworks/data-binding.
154#
155FRAMEWORKS_DATA_BINDING_SUBDIRS := \
156        baseLibrary/src/main \
157        extensions/library/src/main \
158        extensions/library/src/doc
159
160#
161# A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from
162# the root of the tree.
163#
164FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \
165	$(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS))
166
167