OSDN Git Service

am 1a36c59e: Merge "Remove tzdata from core.mk, now we have explicit dependencies."
[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.
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 #
29 pathmap_INCL := \
30     bootloader:bootable/bootloader/legacy/include \
31     camera:system/media/camera/include \
32     corecg:external/skia/include/core \
33     dbus:external/dbus \
34     frameworks-base:frameworks/base/include \
35     frameworks-native:frameworks/native/include \
36     graphics:external/skia/include/core \
37     libc:bionic/libc/include \
38     libdrm1:frameworks/base/media/libdrm/mobile1/include \
39     libhardware:hardware/libhardware/include \
40     libhardware_legacy:hardware/libhardware_legacy/include \
41     libhost:build/libs/host/include \
42     libm:bionic/libm/include \
43     libnativehelper:libnativehelper/include \
44     libpagemap:system/extras/libpagemap/include \
45     libril:hardware/ril/include \
46     libstdc++:bionic/libstdc++/include \
47     libthread_db:bionic/libthread_db/include \
48     mkbootimg:system/core/mkbootimg \
49     opengl-tests-includes:frameworks/native/opengl/tests/include \
50     recovery:bootable/recovery \
51     system-core:system/core/include \
52     audio-effects:system/media/audio_effects/include \
53     audio-utils:system/media/audio_utils/include \
54     wilhelm:frameworks/wilhelm/include \
55     wilhelm-ut:frameworks/wilhelm/src/ut \
56     speex:external/speex/include
57
58 #
59 # Returns the path to the requested module's include directory,
60 # relative to the root of the source tree.  Does not handle external
61 # modules.
62 #
63 # $(1): a list of modules (or other named entities) to find the includes for
64 #
65 define include-path-for
66 $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
67 endef
68
69 #
70 # Many modules expect to be able to say "#include <jni.h>",
71 # so make it easy for them to find the correct path.
72 #
73 JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper
74
75 #
76 # A list of all source roots under frameworks/base, which will be
77 # built into the android.jar.
78 #
79 # Note - "common" is included here, even though it is also built
80 # into a static library (android-common) for unbundled use.  This
81 # is so common and the other framework libraries can have mutual
82 # interdependencies.
83 #
84 FRAMEWORKS_BASE_SUBDIRS := \
85         $(addsuffix /java, \
86             core \
87             graphics \
88             location \
89             media \
90             media/mca/effect \
91             media/mca/filterfw \
92             media/mca/filterpacks \
93             drm \
94             opengl \
95             sax \
96             telephony \
97             wifi \
98             keystore \
99             icu4j \
100             voip \
101          )
102
103 #
104 # A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
105 # the root of the tree.  This currently needs to be here so that other libraries
106 # and apps can find the .aidl files in the framework, though we should really
107 # figure out a better way to do this.
108 #
109 FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
110         $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
111
112 #
113 # A list of all source roots under frameworks/support.
114 #
115 FRAMEWORKS_SUPPORT_SUBDIRS := \
116         v4 \
117         v13 \
118
119 #
120 # A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
121 # the root of the tree.
122 #
123 FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
124         $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS))