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