pathmap.mk 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # Copyright (C) 2016 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. # A central place to define mappings to paths used by the framework build, to
  18. # avoid hard-coding them in Android.mk files. Not meant for header file include
  19. # directories, despite the fact that it was historically used for that!
  20. #
  21. #
  22. # A list of all source roots under frameworks/multidex.
  23. #
  24. FRAMEWORKS_MULTIDEX_SUBDIRS := \
  25. multidex/library/src \
  26. multidex/instrumentation/src
  27. #
  28. # A version of FRAMEWORKS_SUPPORT_SUBDIRS that is expanded to full paths from
  29. # the root of the tree.
  30. #
  31. FRAMEWORKS_SUPPORT_JAVA_SRC_DIRS += \
  32. $(addprefix frameworks/,$(FRAMEWORKS_MULTIDEX_SUBDIRS)) \
  33. frameworks/rs/support
  34. #
  35. # A list of support library modules.
  36. #
  37. FRAMEWORKS_SUPPORT_JAVA_LIBRARIES += \
  38. android-support-v8-renderscript \
  39. android-support-multidex \
  40. android-support-multidex-instrumentation
  41. #
  42. # A list of all documented source roots under frameworks/data-binding.
  43. #
  44. FRAMEWORKS_DATA_BINDING_SUBDIRS := \
  45. baseLibrary/src/main \
  46. extensions/library/src/main \
  47. extensions/library/src/doc
  48. #
  49. # A version of FRAMEWORKS_DATA_BINDING_SUBDIRS that is expanded to full paths from
  50. # the root of the tree.
  51. #
  52. FRAMEWORKS_DATA_BINDING_JAVA_SRC_DIRS := \
  53. $(addprefix frameworks/data-binding/,$(FRAMEWORKS_DATA_BINDING_SUBDIRS))