blob: 549889898b6533310ec2f1b19c325927a194a607 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001#
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 := \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080030 bluedroid:system/bluetooth/bluedroid/include \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070031 bluez-libs:external/bluez/libs/include \
32 bluez-utils:external/bluez/utils \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080033 bootloader:bootable/bootloader/legacy/include \
The Android Open Source Project4f85cc52009-01-09 17:50:54 -080034 corecg:external/skia/include/core \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070035 dbus:external/dbus \
36 frameworks-base:frameworks/base/include \
The Android Open Source Project4f85cc52009-01-09 17:50:54 -080037 graphics:external/skia/include/core \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070038 libc:bionic/libc/include \
39 libdrm1:frameworks/base/media/libdrm/mobile1/include \
40 libdrm2:frameworks/base/media/libdrm/mobile2/include \
41 libhardware:hardware/libhardware/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 \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080050 recovery:bootable/recovery \
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070051 system-core:system/core/include
52
53#
54# Returns the path to the requested module's include directory,
55# relative to the root of the source tree. Does not handle external
56# modules.
57#
58# $(1): a list of modules (or other named entities) to find the includes for
59#
60define include-path-for
61$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
62endef
63
64#
65# Many modules expect to be able to say "#include <jni.h>",
66# so make it easy for them to find the correct path.
67#
68JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper
69
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080070#
71# A list of all source roots under frameworks/base, which will be
72# built into the android.jar.
73#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070074FRAMEWORKS_BASE_SUBDIRS := \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080075 $(addsuffix /java, \
76 core \
77 graphics \
78 im \
79 location \
80 media \
81 opengl \
82 sax \
83 telephony \
84 wifi \
85 )
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070086
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080087#
88# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
89# the root of the tree. This currently needs to be here so that other libraries
90# and apps can find the .aidl files in the framework, though we should really
91# figure out a better way to do this.
92#
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -070093FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -080094 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))