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     bootloader:bootable/bootloader/legacy/include \
     31     camera:system/media/camera/include \
     32     frameworks-base:frameworks/base/include \
     33     frameworks-native:frameworks/native/include \
     34     libc:bionic/libc/include \
     35     libhardware:hardware/libhardware/include \
     36     libhardware_legacy:hardware/libhardware_legacy/include \
     37     libhost:build/libs/host/include \
     38     libm:bionic/libm/include \
     39     libnativehelper:libnativehelper/include \
     40     libpagemap:system/extras/libpagemap/include \
     41     libril:hardware/ril/include \
     42     libstdc++:bionic/libstdc++/include \
     43     mkbootimg:system/core/mkbootimg \
     44     opengl-tests-includes:frameworks/native/opengl/tests/include \
     45     recovery:bootable/recovery \
     46     system-core:system/core/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 #
     62 define include-path-for
     63 $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_INCL))))
     64 endef
     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 #
     70 JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper
     71 
     72 #
     73 # A list of all source roots under frameworks/base, which will be
     74 # built into the android.jar.
     75 #
     76 FRAMEWORKS_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 	    phone \
     91 	    wifi \
     92 	    keystore \
     93 	    rs \
     94 	 )
     95 
     96 #
     97 # A version of FRAMEWORKS_BASE_SUBDIRS that is expanded to full paths from
     98 # the root of the tree.  This currently needs to be here so that other libraries
     99 # and apps can find the .aidl files in the framework, though we should really
    100 # figure out a better way to do this.
    101 #
    102 FRAMEWORKS_BASE_JAVA_SRC_DIRS := \
    103 	$(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
    104 
    105 #
    106 # A list of all source roots under frameworks/support.
    107 #
    108 FRAMEWORKS_SUPPORT_SUBDIRS := \
    109         annotations \
    110         v4 \
    111         v7/gridlayout \
    112         v7/appcompat \
    113         v7/cardview \
    114         v7/mediarouter \
    115         v7/palette \
    116         v7/recyclerview \
    117         v8/renderscript \
    118         v13 \
    119         v17/leanback
    120 
    121 #
    122 # A list of all source roots under frameworks/multidex.
    123 #
    124 FRAMEWORKS_MULTIDEX_SUBDIRS := \
    125         multidex/library/src \
    126         multidex/instrumentation/src
    127 
    128 #
    129 # A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
    130 # the root of the tree.
    131 #
    132 FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS := \
    133 	$(addprefix frameworks/support/,$(FRAMEWORKS_SUPPORT_SUBDIRS)) \
    134 	$(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS))
    135 
    136 #
    137 # A list of support library modules.
    138 #
    139 FRAMEWORKS_SUPPORT_JAVA_LIBRARIES := \
    140     $(foreach dir,$(FRAMEWORKS_SUPPORT_SUBDIRS),android-support-$(subst /,-,$(dir))) \
    141     android-support-multidex \
    142     android-support-multidex-instrumentation
    143 
    144