pathmap.mk revision fe1a83cbc006f5887d48af8422d760aabd0e3e24
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#
78# Note - "common" is included here, even though it is also built
79# into a static library (android-common) for unbundled use.  This
80# is so common and the other framework libraries can have mutual
81# interdependencies.
82#
83FRAMEWORKS_BASE_SUBDIRS := \
84	$(addsuffix /java, \
85	    core \
86	    graphics \
87	    location \
88	    media \
89	    media/mca/effect \
90	    media/mca/filterfw \
91	    media/mca/filterpacks \
92	    drm \
93	    opengl \
94	    sax \
95	    telephony \
96	    wifi \
97	    keystore \
98	 )
99
100#
101# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
102# the root of the tree.  This currently needs to be here so that other libraries
103# and apps can find the .aidl files in the framework, though we should really
104# figure out a better way to do this.
105#
106FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
107	$(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
108
109#
110# A list of all source roots under frameworks/support.
111#
112FRAMEWORKS_SUPPORT_SUBDIRS := \
113	v4 \
114	v7/gridlayout \
115	v7/appcompat \
116	v7/mediarouter \
117	v13
118
119#
120# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
121# the root of the tree.
122#
123FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
124	$(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS))
125
126#
127# A list of support library modules.
128#
129FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
130    $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir)))
131
132