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 opengl-tests-includes:frameworks/native/opengl/tests/include \ 44 recovery:bootable/recovery \ 45 system-core:system/core/include \ 46 audio:system/media/audio/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 mediandk:frameworks/av/media/ndk/ \ 53 speex:external/speex/include 54 55# 56# Returns the path to the requested module's include directory, 57# relative to the root of the source tree. Does not handle external 58# modules. 59# 60# $(1): a list of modules (or other named entities) to find the includes for 61# 62define include-path-for 63$(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL)))) 64endef 65 66# 67# Many modules expect to be able to say "#include <jni.h>", 68# so make it easy for them to find the correct path. 69# 70JNI_H_INCLUDE := libnativehelper/include/nativehelper 71 72# 73# A list of all source roots under frameworks/base, which will be 74# built into the android.jar. 75# 76FRAMEWORKS_BASE_SUBDIRS := \ 77 $(addsuffix /java, \ 78 core \ 79 graphics \ 80 location \ 81 media \ 82 media/mca/effect \ 83 media/mca/filterfw \ 84 media/mca/filterpacks \ 85 drm \ 86 opengl \ 87 sax \ 88 telecomm \ 89 telephony \ 90 wifi \ 91 keystore \ 92 rs \ 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 annotations \ 109 compat \ 110 media-compat \ 111 fragment \ 112 core-ui \ 113 core-utils \ 114 v7/gridlayout \ 115 v7/cardview \ 116 v7/mediarouter \ 117 v7/palette \ 118 v8/renderscript \ 119 v13 \ 120 v17/leanback \ 121 design \ 122 percent \ 123 recommendation \ 124 transition \ 125 v7/preference \ 126 v14/preference \ 127 v17/preference-leanback \ 128 documents-archive \ 129 customtabs 130 131# 132# A list of all source roots under frameworks/multidex. 133# 134FRAMEWORKS_MULTIDEX_SUBDIRS := \ 135 multidex/library/src \ 136 multidex/instrumentation/src 137 138# 139# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from 140# the root of the tree. 141# 142FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \ 143 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \ 144 $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \ 145 frameworks/support/graphics/drawable/animated \ 146 frameworks/support/graphics/drawable/static \ 147 frameworks/support/v7/appcompat/src \ 148 frameworks/support/v7/recyclerview/src 149 150# 151# A list of support library modules. 152# 153FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \ 154 $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \ 155 android-support-v4 \ 156 android-support-vectordrawable \ 157 android-support-animatedvectordrawable \ 158 android-support-v7-appcompat \ 159 android-support-v7-recyclerview \ 160 android-support-multidex \ 161 android-support-multidex-instrumentation 162 163# 164# A list of all documented source roots under frameworks/data-binding. 165# 166FRAMEWORKS_DATA_BINDING_SUBDIRS := \ 167 baseLibrary/src/main \ 168 extensions/library/src/main \ 169 extensions/library/src/doc 170 171# 172# A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from 173# the root of the tree. 174# 175FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \ 176 $(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS)) 177 178