blob: 7d796dcf31475fc95fa234ff9b1a19b49df696a9 [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 \
The Android Open Source Project88b60792009-03-03 19:28:42 -080037 libhardware:hardware/libhardware/include \
38 libhardware_legacy:hardware/libhardware_legacy/include \
39 libhost:build/libs/host/include \
40 libm:bionic/libm/include \
Elliott Hughes89898df2012-05-03 16:37:40 -070041 libnativehelper:libnativehelper/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080042 libpagemap:system/extras/libpagemap/include \
43 libril:hardware/ril/include \
44 libstdc++:bionic/libstdc++/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080045 mkbootimg:system/core/mkbootimg \
Mathias Agopianfb956ef2012-03-05 18:45:37 -080046 opengl-tests-includes:frameworks/native/opengl/tests/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080047 recovery:bootable/recovery \
Eric Laurent99acb9c2011-06-16 20:53:25 -070048 system-core:system/core/include \
Glenn Kastenfefc17f2012-03-13 15:23:33 -070049 audio-effects:system/media/audio_effects/include \
50 audio-utils:system/media/audio_utils/include \
Simon Wilson3b7d7b42013-01-15 16:03:59 -080051 audio-route:system/media/audio_route/include \
Glenn Kastend9054912012-03-26 17:50:44 -070052 wilhelm:frameworks/wilhelm/include \
53 wilhelm-ut:frameworks/wilhelm/src/ut \
Eric Laurent99acb9c2011-06-16 20:53:25 -070054 speex:external/speex/include
The Android Open Source Project88b60792009-03-03 19:28:42 -080055
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#
77FRAMEWORKS_BASE_SUBDIRS := \
78 $(addsuffix /java, \
79 core \
80 graphics \
The Android Open Source Project88b60792009-03-03 19:28:42 -080081 location \
82 media \
Marius Rennfe97fe92012-03-27 10:46:13 -070083 media/mca/effect \
84 media/mca/filterfw \
85 media/mca/filterpacks \
aimitakeshi2bdf2652010-07-27 08:34:47 +090086 drm \
The Android Open Source Project88b60792009-03-03 19:28:42 -080087 opengl \
88 sax \
Santos Cordon64404702013-12-17 20:26:30 -080089 telecomm \
The Android Open Source Project88b60792009-03-03 19:28:42 -080090 telephony \
The Android Open Source Project88b60792009-03-03 19:28:42 -080091 wifi \
Chung-yih Wang67647752009-06-10 23:08:03 +080092 keystore \
Tim Murray55445192013-12-17 13:27:28 -080093 rs \
The Android Open Source Project88b60792009-03-03 19:28:42 -080094 )
95
96#
97# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
98# the root of the tree. This currently needs to be here so that other libraries
99# and apps can find the .aidl files in the framework, though we should really
100# figure out a better way to do this.
101#
102FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
103 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800104
105#
106# A list of all source roots under frameworks/support.
107#
108FRAMEWORKS_SUPPORT_SUBDIRS := \
Scott Mainaf44e902013-05-28 14:53:22 -0700109 v4 \
110 v7/gridlayout \
111 v7/appcompat \
Jeff Brown9977ddf2013-07-09 00:35:00 +0000112 v7/mediarouter \
Chet Haase585ce192014-01-16 07:53:43 -0800113 v7/recyclerview \
Scott Main1a2709f2013-09-12 16:47:05 -0700114 v8/renderscript \
Maurice Chu664035f2013-10-16 14:30:42 -0700115 v13
116
117#
118# A list of all source roots under frameworks/support.
119#
120FRAMEWORKS_MULTIDEX_SUBDIRS := \
Yohann Roussel584f6012013-09-04 12:19:46 +0200121 multidex \
122 multidex/instrumentation
Svetoslav Ganov155d8552011-11-17 15:13:49 -0800123
124#
125# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
126# the root of the tree.
127#
128FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
Maurice Chu664035f2013-10-16 14:30:42 -0700129 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \
130 $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS))
Jeff Brownfcf2a112013-04-24 20:36:07 -0700131
132#
133# A list of support library modules.
134#
135FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
Maurice Chu664035f2013-10-16 14:30:42 -0700136 $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
137 $(foreach dir,$(FRAMEWORKS_MULTIDEX_SUBDIRS),android-support-$(subst /,-,$(dir)))
Jeff Brownfcf2a112013-04-24 20:36:07 -0700138