Home | History | Annotate | Download | only in core
      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 := \
     30     bluedroid:system/bluetooth/bluedroid/include \
     31     bluez:external/bluetooth/bluez \
     32     glib:external/bluetooth/glib \
     33     bootloader:bootable/bootloader/legacy/include \
     34     camera:system/media/camera/include \
     35     corecg:external/skia/include/core \
     36     dbus:external/dbus \
     37     frameworks-base:frameworks/base/include \
     38     frameworks-native:frameworks/native/include \
     39     graphics:external/skia/include/core \
     40     libc:bionic/libc/include \
     41     libdrm1:frameworks/base/media/libdrm/mobile1/include \
     42     libhardware:hardware/libhardware/include \
     43     libhardware_legacy:hardware/libhardware_legacy/include \
     44     libhost:build/libs/host/include \
     45     libm:bionic/libm/include \
     46     libnativehelper:libnativehelper/include \
     47     libpagemap:system/extras/libpagemap/include \
     48     libril:hardware/ril/include \
     49     libstdc++:bionic/libstdc++/include \
     50     libthread_db:bionic/libthread_db/include \
     51     mkbootimg:system/core/mkbootimg \
     52     opengl-tests-includes:frameworks/native/opengl/tests/include \
     53     recovery:bootable/recovery \
     54     system-core:system/core/include \
     55     audio-effects:system/media/audio_effects/include \
     56     audio-utils:system/media/audio_utils/include \
     57     wilhelm:frameworks/wilhelm/include \
     58     wilhelm-ut:frameworks/wilhelm/src/ut \
     59     speex:external/speex/include
     60 
     61 #
     62 # Returns the path to the requested module's include directory,
     63 # relative to the root of the source tree.  Does not handle external
     64 # modules.
     65 #
     66 # $(1): a list of modules (or other named entities) to find the includes for
     67 #
     68 define include-path-for
     69 $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
     70 endef
     71 
     72 #
     73 # Many modules expect to be able to say "#include <jni.h>",
     74 # so make it easy for them to find the correct path.
     75 #
     76 JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper
     77 
     78 #
     79 # A list of all source roots under frameworks/base, which will be
     80 # built into the android.jar.
     81 #
     82 # Note - "common" is included here, even though it is also built
     83 # into a static library (android-common) for unbundled use.  This
     84 # is so common and the other framework libraries can have mutual
     85 # interdependencies.
     86 #
     87 FRAMEWORKS_BASE_SUBDIRS := \
     88 	$(addsuffix /java, \
     89 	    core \
     90 	    graphics \
     91 	    location \
     92 	    media \
     93 	    media/mca/effect \
     94 	    media/mca/filterfw \
     95 	    media/mca/filterpacks \
     96 	    drm \
     97 	    opengl \
     98 	    sax \
     99 	    telephony \
    100 	    wifi \
    101 	    keystore \
    102 	    icu4j \
    103 	    voip \
    104 	 )
    105 
    106 #
    107 # A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
    108 # the root of the tree.  This currently needs to be here so that other libraries
    109 # and apps can find the .aidl files in the framework, though we should really
    110 # figure out a better way to do this.
    111 #
    112 FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
    113 	$(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
    114 
    115 #
    116 # A list of all source roots under frameworks/support.
    117 #
    118 FRAMEWORKS_SUPPORT_SUBDIRS := \
    119 	v4 \
    120 	v13 \
    121 
    122 #
    123 # A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
    124 # the root of the tree.
    125 #
    126 FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
    127 	$(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS))
    128