blob: 09f912e3e21421a1bea37024db336fe5e242b1a3 [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 := \
The Android Open Source Project88b60792009-03-03 19:28:42 -080030 bootloader:bootable/bootloader/legacy/include \
Eino-Ville Talvala11d3c442012-04-05 17:09:18 -070031 camera:system/media/camera/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080032 corecg:external/skia/include/core \
The Android Open Source Project88b60792009-03-03 19:28:42 -080033 frameworks-base:frameworks/base/include \
Mathias Agopianbd118e62012-03-05 16:04:31 -080034 frameworks-native:frameworks/native/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080035 graphics:external/skia/include/core \
36 libc:bionic/libc/include \
37 libdrm1:frameworks/base/media/libdrm/mobile1/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080038 libhardware:hardware/libhardware/include \
39 libhardware_legacy:hardware/libhardware_legacy/include \
40 libhost:build/libs/host/include \
41 libm:bionic/libm/include \
Elliott Hughes89898df2012-05-03 16:37:40 -070042 libnativehelper:libnativehelper/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080043 libpagemap:system/extras/libpagemap/include \
44 libril:hardware/ril/include \
45 libstdc++:bionic/libstdc++/include \
46 libthread_db:bionic/libthread_db/include \
47 mkbootimg:system/core/mkbootimg \
Mathias Agopianfb956ef2012-03-05 18:45:37 -080048 opengl-tests-includes:frameworks/native/opengl/tests/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080049 recovery:bootable/recovery \
Eric Laurent99acb9c2011-06-16 20:53:25 -070050 system-core:system/core/include \
Glenn Kastenfefc17f2012-03-13 15:23:33 -070051 audio-effects:system/media/audio_effects/include \
52 audio-utils:system/media/audio_utils/include \
Simon Wilson3b7d7b42013-01-15 16:03:59 -080053 audio-route:system/media/audio_route/include \
Glenn Kastend9054912012-03-26 17:50:44 -070054 wilhelm:frameworks/wilhelm/include \
55 wilhelm-ut:frameworks/wilhelm/src/ut \
Eric Laurent99acb9c2011-06-16 20:53:25 -070056 speex:external/speex/include
The Android Open Source Project88b60792009-03-03 19:28:42 -080057
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#
65define include-path-for
66$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
67endef
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#
73JNI_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#
Dan Egnor81ab3c52009-11-18 14:42:40 -080079# 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#
The Android Open Source Project88b60792009-03-03 19:28:42 -080084FRAMEWORKS_BASE_SUBDIRS := \
85 $(addsuffix /java, \
86 core \
87 graphics \
The Android Open Source Project88b60792009-03-03 19:28:42 -080088 location \
89 media \
Marius Rennfe97fe92012-03-27 10:46:13 -070090 media/mca/effect \
91 media/mca/filterfw \
92 media/mca/filterpacks \
aimitakeshi2bdf2652010-07-27 08:34:47 +090093 drm \
The Android Open Source Project88b60792009-03-03 19:28:42 -080094 opengl \
95 sax \
96 telephony \
The Android Open Source Project88b60792009-03-03 19:28:42 -080097 wifi \
Chung-yih Wang67647752009-06-10 23:08:03 +080098 keystore \
The Android Open Source Project88b60792009-03-03 19:28:42 -080099 )
100
101#
102# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
103# the root of the tree. This currently needs to be here so that other libraries
104# and apps can find the .aidl files in the framework, though we should really
105# figure out a better way to do this.
106#
107FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
108 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800109
110#
111# A list of all source roots under frameworks/support.
112#
113FRAMEWORKS_SUPPORT_SUBDIRS := \
Scott Mainaf44e902013-05-28 14:53:22 -0700114 v4 \
115 v7/gridlayout \
116 v7/appcompat \
117 v7/mediarouter \
118 v8/renderscript \
119 v13
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800120
121#
122# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
123# the root of the tree.
124#
125FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
126 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS))
Jeff Brownfcf2a112013-04-24 20:36:07 -0700127
128#
129# A list of support library modules.
130#
131FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
132 $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir)))
133