Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Android.mk 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. # Mesa 3-D graphics library
  2. #
  3. # Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
  4. # Copyright (C) 2010-2011 LunarG Inc.
  5. #
  6. # Permission is hereby granted, free of charge, to any person obtaining a
  7. # copy of this software and associated documentation files (the "Software"),
  8. # to deal in the Software without restriction, including without limitation
  9. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. # and/or sell copies of the Software, and to permit persons to whom the
  11. # Software is furnished to do so, subject to the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included
  14. # in all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. # DEALINGS IN THE SOFTWARE.
  23. # BOARD_GPU_DRIVERS should be defined. The valid values are
  24. #
  25. # classic drivers: i915 i965
  26. # gallium drivers: swrast freedreno i915g nouveau kmsro r300g r600g radeonsi vc4 virgl vmwgfx etnaviv iris lima panfrost
  27. #
  28. # The main target is libGLES_mesa. For each classic driver enabled, a DRI
  29. # module will also be built. DRI modules will be loaded by libGLES_mesa.
  30. MESA_TOP := $(call my-dir)
  31. MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION)))
  32. ifneq ($(filter 2 4, $(MESA_ANDROID_MAJOR_VERSION)),)
  33. $(error "Android 4.4 and earlier not supported")
  34. endif
  35. MESA_DRI_MODULE_REL_PATH := dri
  36. MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$(MESA_DRI_MODULE_REL_PATH)
  37. MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$(MESA_DRI_MODULE_REL_PATH)
  38. MESA_DRI_LDFLAGS := -Wl,--build-id=sha1
  39. MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
  40. MESA_PYTHON2 := python
  41. # Lists to convert driver names to boolean variables
  42. # in form of <driver name>.<boolean make variable>
  43. classic_drivers := i915.HAVE_I915_DRI i965.HAVE_I965_DRI
  44. gallium_drivers := \
  45. swrast.HAVE_GALLIUM_SOFTPIPE \
  46. freedreno.HAVE_GALLIUM_FREEDRENO \
  47. i915g.HAVE_GALLIUM_I915 \
  48. nouveau.HAVE_GALLIUM_NOUVEAU \
  49. kmsro.HAVE_GALLIUM_KMSRO \
  50. r300g.HAVE_GALLIUM_R300 \
  51. r600g.HAVE_GALLIUM_R600 \
  52. radeonsi.HAVE_GALLIUM_RADEONSI \
  53. vmwgfx.HAVE_GALLIUM_VMWGFX \
  54. vc4.HAVE_GALLIUM_VC4 \
  55. virgl.HAVE_GALLIUM_VIRGL \
  56. etnaviv.HAVE_GALLIUM_ETNAVIV \
  57. iris.HAVE_GALLIUM_IRIS \
  58. lima.HAVE_GALLIUM_LIMA \
  59. panfrost.HAVE_GALLIUM_PANFROST
  60. ifeq ($(BOARD_GPU_DRIVERS),all)
  61. MESA_BUILD_CLASSIC := $(filter HAVE_%, $(subst ., , $(classic_drivers)))
  62. MESA_BUILD_GALLIUM := $(filter HAVE_%, $(subst ., , $(gallium_drivers)))
  63. else
  64. # Warn if we have any invalid driver names
  65. $(foreach d, $(BOARD_GPU_DRIVERS), \
  66. $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \
  67. , \
  68. $(warning invalid GPU driver: $(d)) \
  69. ) \
  70. )
  71. MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers)))))
  72. MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers)))))
  73. endif
  74. ifeq ($(filter x86%,$(TARGET_ARCH)),)
  75. MESA_BUILD_CLASSIC :=
  76. endif
  77. $(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true))
  78. ifneq ($(filter true, $(HAVE_GALLIUM_RADEONSI)),)
  79. MESA_ENABLE_LLVM := true
  80. endif
  81. define mesa-build-with-llvm
  82. $(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5 6 7), \
  83. $(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
  84. $(eval LOCAL_CFLAGS += -DLLVM_AVAILABLE -DMESA_LLVM_VERSION_STRING=\"3.9\") \
  85. $(eval LOCAL_SHARED_LIBRARIES += libLLVM)
  86. endef
  87. # add subdirectories
  88. SUBDIRS := \
  89. src/freedreno \
  90. src/gbm \
  91. src/loader \
  92. src/mapi \
  93. src/compiler \
  94. src/mesa \
  95. src/util \
  96. src/egl \
  97. src/amd \
  98. src/broadcom \
  99. src/intel \
  100. src/mesa/drivers/dri \
  101. src/vulkan \
  102. src/panfrost \
  103. INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
  104. INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
  105. include $(INC_DIRS)