• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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. Not meant for header file include directories,
20# despite the fact that it was historically used for that!
21#
22# If you want this for a library's header files, use LOCAL_EXPORT_C_INCLUDES
23# instead. Then users of the library don't have to do anything --- they'll
24# have the correct header files added to their include path automatically.
25#
26
27#
28# TODO: Allow each project to define stuff like this before the per-module
29#       Android.mk files are included, so we don't need to have a big central
30#       list.
31#
32
33#
34# A mapping from shorthand names to include directories.
35#
36pathmap_INCL := \
37    camera:system/media/camera/include \
38    frameworks-base:frameworks/base/include \
39    frameworks-native:frameworks/native/include \
40    libhardware:hardware/libhardware/include \
41    libhardware_legacy:hardware/libhardware_legacy/include \
42    libril:hardware/ril/include \
43    recovery:bootable/recovery \
44    system-core:system/core/include \
45    audio:system/media/audio/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
53#
54# Returns the path to the requested module's include directory,
55# relative to the root of the source tree.  Does not handle external
56# modules.
57#
58# $(1): a list of modules (or other named entities) to find the includes for
59#
60define include-path-for
61$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
62endef
63
64#
65# A list of all source roots under frameworks/base, which will be
66# built into the android.jar.
67#
68FRAMEWORKS_BASE_SUBDIRS := \
69	$(addsuffix /java, \
70	    core \
71	    graphics \
72	    location \
73	    media \
74	    media/mca/effect \
75	    media/mca/filterfw \
76	    media/mca/filterpacks \
77	    drm \
78	    opengl \
79	    sax \
80	    telecomm \
81	    telephony \
82	    wifi \
83	    lowpan \
84	    keystore \
85	    rs \
86	 )
87
88#
89# A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
90# the root of the tree.  This currently needs to be here so that other libraries
91# and apps can find the .aidl files in the framework, though we should really
92# figure out a better way to do this.
93#
94FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
95	$(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
96