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