pathmap.mk revision aa4267216542e1ce0320a6794a200c33f0aad34d
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    frameworks-base:frameworks/base/include \
33    frameworks-native:frameworks/native/include \
34    libc:bionic/libc/include \
35    libhardware:hardware/libhardware/include \
36    libhardware_legacy:hardware/libhardware_legacy/include \
37    libhost:build/libs/host/include \
38    libm:bionic/libm/include \
39    libnativehelper:libnativehelper/include \
40    libpagemap:system/extras/libpagemap/include \
41    libril:hardware/ril/include \
42    libstdc++:bionic/libstdc++/include \
43    mkbootimg:system/core/mkbootimg \
44    opengl-tests-includes:frameworks/native/opengl/tests/include \
45    recovery:bootable/recovery \
46    system-core:system/core/include \
47    audio-effects:system/media/audio_effects/include \
48    audio-utils:system/media/audio_utils/include \
49    audio-route:system/media/audio_route/include \
50    wilhelm:frameworks/wilhelm/include \
51    wilhelm-ut:frameworks/wilhelm/src/ut \
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	    telephony \
88	    wifi \
89	    keystore \
90	    rs \
91	 )
92
93#
94# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
95# the root of the tree.  This currently needs to be here so that other libraries
96# and apps can find the .aidl files in the framework, though we should really
97# figure out a better way to do this.
98#
99FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
100	$(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
101
102#
103# A list of all source roots under frameworks/support.
104#
105FRAMEWORKS_SUPPORT_SUBDIRS := \
106        v4 \
107        v7/gridlayout \
108        v7/appcompat \
109        v7/mediarouter \
110        v7/recyclerview \
111        v8/renderscript \
112        v13
113
114#
115# A list of all source roots under frameworks/support.
116#
117FRAMEWORKS_MULTIDEX_SUBDIRS := \
118        multidex \
119        multidex/instrumentation
120
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)) \
127        $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS))
128
129#
130# A list of support library modules.
131#
132FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
133    $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
134    $(foreach dir,$(FRAMEWORKS_MULTIDEX_SUBDIRS),android-support-$(subst /,-,$(dir)))
135
136