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 v4 \ 110 v7/gridlayout \ 111 v7/cardview \ 112 v7/mediarouter \ 113 v7/palette \ 114 v8/renderscript \ 115 v13 \ 116 v17/leanback \ 117 design \ 118 percent \ 119 recommendation \ 120 v7/preference \ 121 v14/preference \ 122 v17/preference-leanback \ 123 documents-archive \ 124 customtabs 125 126# 127# A list of all source roots under frameworks/multidex. 128# 129FRAMEWORKS_MULTIDEX_SUBDIRS := \ 130 multidex/library/src \ 131 multidex/instrumentation/src 132 133# 134# A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from 135# the root of the tree. 136# 137FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \ 138 $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \ 139 $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \ 140 frameworks/support/graphics/drawable/animated \ 141 frameworks/support/graphics/drawable/static \ 142 frameworks/support/v7/appcompat/src \ 143 frameworks/support/v7/recyclerview/src 144 145# 146# A list of support library modules. 147# 148FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \ 149 $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \ 150 android-support-vectordrawable \ 151 android-support-animatedvectordrawable \ 152 android-support-v7-appcompat \ 153 android-support-v7-recyclerview \ 154 android-support-multidex \ 155 android-support-multidex-instrumentation 156 157# 158# A list of all documented source roots under frameworks/data-binding. 159# 160FRAMEWORKS_DATA_BINDING_SUBDIRS := \ 161 baseLibrary/src/main \ 162 extensions/library/src/main \ 163 extensions/library/src/doc 164 165# 166# A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from 167# the root of the tree. 168# 169FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \ 170 $(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS)) 171 172