The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 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 | # |
| 29 | pathmap_INCL := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 30 | bootloader:bootable/bootloader/legacy/include \ |
Eino-Ville Talvala | 11d3c44 | 2012-04-05 17:09:18 -0700 | [diff] [blame] | 31 | camera:system/media/camera/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 32 | corecg:external/skia/include/core \ |
| 33 | dbus:external/dbus \ |
| 34 | frameworks-base:frameworks/base/include \ |
Mathias Agopian | bd118e6 | 2012-03-05 16:04:31 -0800 | [diff] [blame] | 35 | frameworks-native:frameworks/native/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 36 | graphics:external/skia/include/core \ |
| 37 | libc:bionic/libc/include \ |
| 38 | libdrm1:frameworks/base/media/libdrm/mobile1/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 39 | libhardware:hardware/libhardware/include \ |
| 40 | libhardware_legacy:hardware/libhardware_legacy/include \ |
| 41 | libhost:build/libs/host/include \ |
| 42 | libm:bionic/libm/include \ |
Elliott Hughes | 89898df | 2012-05-03 16:37:40 -0700 | [diff] [blame] | 43 | libnativehelper:libnativehelper/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 44 | libpagemap:system/extras/libpagemap/include \ |
| 45 | libril:hardware/ril/include \ |
| 46 | libstdc++:bionic/libstdc++/include \ |
| 47 | libthread_db:bionic/libthread_db/include \ |
| 48 | mkbootimg:system/core/mkbootimg \ |
Mathias Agopian | fb956ef | 2012-03-05 18:45:37 -0800 | [diff] [blame] | 49 | opengl-tests-includes:frameworks/native/opengl/tests/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 50 | recovery:bootable/recovery \ |
Eric Laurent | 99acb9c | 2011-06-16 20:53:25 -0700 | [diff] [blame] | 51 | system-core:system/core/include \ |
Glenn Kasten | fefc17f | 2012-03-13 15:23:33 -0700 | [diff] [blame] | 52 | audio-effects:system/media/audio_effects/include \ |
| 53 | audio-utils:system/media/audio_utils/include \ |
Simon Wilson | 3b7d7b4 | 2013-01-15 16:03:59 -0800 | [diff] [blame] | 54 | audio-route:system/media/audio_route/include \ |
Glenn Kasten | d905491 | 2012-03-26 17:50:44 -0700 | [diff] [blame] | 55 | wilhelm:frameworks/wilhelm/include \ |
| 56 | wilhelm-ut:frameworks/wilhelm/src/ut \ |
Eric Laurent | 99acb9c | 2011-06-16 20:53:25 -0700 | [diff] [blame] | 57 | speex:external/speex/include |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 58 | |
| 59 | # |
| 60 | # Returns the path to the requested module's include directory, |
| 61 | # relative to the root of the source tree. Does not handle external |
| 62 | # modules. |
| 63 | # |
| 64 | # $(1): a list of modules (or other named entities) to find the includes for |
| 65 | # |
| 66 | define include-path-for |
| 67 | $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL)))) |
| 68 | endef |
| 69 | |
| 70 | # |
| 71 | # Many modules expect to be able to say "#include <jni.h>", |
| 72 | # so make it easy for them to find the correct path. |
| 73 | # |
| 74 | JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper |
| 75 | |
| 76 | # |
| 77 | # A list of all source roots under frameworks/base, which will be |
| 78 | # built into the android.jar. |
| 79 | # |
Dan Egnor | 81ab3c5 | 2009-11-18 14:42:40 -0800 | [diff] [blame] | 80 | # Note - "common" is included here, even though it is also built |
| 81 | # into a static library (android-common) for unbundled use. This |
| 82 | # is so common and the other framework libraries can have mutual |
| 83 | # interdependencies. |
| 84 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 85 | FRAMEWORKS_BASE_SUBDIRS := \ |
| 86 | $(addsuffix /java, \ |
| 87 | core \ |
| 88 | graphics \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 89 | location \ |
| 90 | media \ |
Marius Renn | fe97fe9 | 2012-03-27 10:46:13 -0700 | [diff] [blame] | 91 | media/mca/effect \ |
| 92 | media/mca/filterfw \ |
| 93 | media/mca/filterpacks \ |
aimitakeshi | 2bdf265 | 2010-07-27 08:34:47 +0900 | [diff] [blame] | 94 | drm \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 95 | opengl \ |
| 96 | sax \ |
| 97 | telephony \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 98 | wifi \ |
Chung-yih Wang | 6764775 | 2009-06-10 23:08:03 +0800 | [diff] [blame] | 99 | keystore \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 100 | ) |
| 101 | |
| 102 | # |
| 103 | # A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from |
| 104 | # the root of the tree. This currently needs to be here so that other libraries |
| 105 | # and apps can find the .aidl files in the framework, though we should really |
| 106 | # figure out a better way to do this. |
| 107 | # |
| 108 | FRAMEWORKS_BASE_JAVA_SRC_DIRS := \ |
| 109 | $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS)) |
Svetoslav Ganov | 155d855 | 2011-11-17 15:13:49 -0800 | [diff] [blame] | 110 | |
| 111 | # |
| 112 | # A list of all source roots under frameworks/support. |
| 113 | # |
| 114 | FRAMEWORKS_SUPPORT_SUBDIRS := \ |
| 115 | v4 \ |
| 116 | v13 \ |
| 117 | |
| 118 | # |
| 119 | # A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from |
| 120 | # the root of the tree. |
| 121 | # |
| 122 | FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \ |
| 123 | $(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) |