blob: c3d7c693fcb597fb56f24ae0b13ef998e8d84d98 [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
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 \
Jaikumar Ganesh09427682009-05-05 22:27:45 -070031 bluez:external/bluetooth/bluez \
32 glib:external/bluetooth/glib \
The Android Open Source Project88b60792009-03-03 19:28:42 -080033 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 \
The Android Open Source Project88b60792009-03-03 19:28:42 -080040 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 \
Mathias Agopiancdcea7a2012-03-05 16:01:41 -080050 opengl-tests-includes:frameworks/base/opengl/tests/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080051 recovery:bootable/recovery \
Eric Laurent99acb9c2011-06-16 20:53:25 -070052 system-core:system/core/include \
53 speex:external/speex/include
The Android Open Source Project88b60792009-03-03 19:28:42 -080054
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 := $(call include-path-for,libnativehelper)/nativehelper
71
72#
73# A list of all source roots under frameworks/base, which will be
74# built into the android.jar.
75#
Dan Egnor81ab3c52009-11-18 14:42:40 -080076# Note - "common" is included here, even though it is also built
77# into a static library (android-common) for unbundled use. This
78# is so common and the other framework libraries can have mutual
79# interdependencies.
80#
The Android Open Source Project88b60792009-03-03 19:28:42 -080081FRAMEWORKS_BASE_SUBDIRS := \
82 $(addsuffix /java, \
83 core \
84 graphics \
The Android Open Source Project88b60792009-03-03 19:28:42 -080085 location \
86 media \
aimitakeshi2bdf2652010-07-27 08:34:47 +090087 drm \
The Android Open Source Project88b60792009-03-03 19:28:42 -080088 opengl \
89 sax \
90 telephony \
The Android Open Source Project88b60792009-03-03 19:28:42 -080091 wifi \
Chung-yih Wang67647752009-06-10 23:08:03 +080092 keystore \
Doug Felt05d27582010-04-05 14:00:48 -070093 icu4j \
Chung-yih Wangab8ed582010-08-05 11:31:07 +080094 voip \
The Android Open Source Project88b60792009-03-03 19:28:42 -080095 )
96
97#
98# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
99# the root of the tree. This currently needs to be here so that other libraries
100# and apps can find the .aidl files in the framework, though we should really
101# figure out a better way to do this.
102#
103FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
104 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800105
106#
107# A list of all source roots under frameworks/support.
108#
109FRAMEWORKS_SUPPORT_SUBDIRS := \
110 v4 \
111 v13 \
112
113#
114# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
115# the root of the tree.
116#
117FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
118 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS))