OSDN Git Service

[DO NOT MERGE] Update Security String to 2017-04-01 for mnc-dev am: 06a57496e6 am...
[android-x86/build.git] / core / pathmap.mk
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 #
36 pathmap_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 #
62 define include-path-for
63 $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
64 endef
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 #
70 JNI_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 #
76 FRAMEWORKS_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 #
101 FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
102         $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
103
104 #
105 # A list of all source roots under frameworks/support.
106 #
107 FRAMEWORKS_SUPPORT_SUBDIRS := \
108         annotations \
109         compat \
110         media-compat \
111         fragment \
112         core-ui \
113         core-utils \
114         v7/gridlayout \
115         v7/cardview \
116         v7/mediarouter \
117         v7/palette \
118         v8/renderscript \
119         v13 \
120         v17/leanback \
121         design \
122         percent \
123         recommendation \
124         v7/preference \
125         v14/preference \
126         v17/preference-leanback \
127         documents-archive \
128         customtabs
129
130 #
131 # A list of all source roots under frameworks/multidex.
132 #
133 FRAMEWORKS_MULTIDEX_SUBDIRS := \
134         multidex/library/src \
135         multidex/instrumentation/src
136
137 #
138 # A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
139 # the root of the tree.
140 #
141 FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
142         $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \
143         $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \
144         frameworks/support/graphics/drawable/animated \
145         frameworks/support/graphics/drawable/static \
146         frameworks/support/v7/appcompat/src \
147         frameworks/support/v7/recyclerview/src
148
149 #
150 # A list of support library modules.
151 #
152 FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
153     $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
154     android-support-v4 \
155     android-support-vectordrawable \
156     android-support-animatedvectordrawable \
157     android-support-v7-appcompat \
158     android-support-v7-recyclerview \
159     android-support-multidex \
160     android-support-multidex-instrumentation
161
162 #
163 # A list of all documented source roots under frameworks/data-binding.
164 #
165 FRAMEWORKS_DATA_BINDING_SUBDIRS := \
166         baseLibrary/src/main \
167         extensions/library/src/main \
168         extensions/library/src/doc
169
170 #
171 # A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from
172 # the root of the tree.
173 #
174 FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \
175         $(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS))
176