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