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 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 ilo nouveau r300g r600g radeonsi vc4 vmwgfx
  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. MESA_ANDROID_MINOR_VERSION := $(word 2, $(subst ., , $(PLATFORM_VERSION)))
  33. MESA_ANDROID_VERSION := $(MESA_ANDROID_MAJOR_VERSION).$(MESA_ANDROID_MINOR_VERSION)
  34. ifeq ($(filter 1 2 3 4,$(MESA_ANDROID_MAJOR_VERSION)),)
  35. MESA_LOLLIPOP_BUILD := true
  36. else
  37. define local-generated-sources-dir
  38. $(call local-intermediates-dir)
  39. endef
  40. endif
  41. MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
  42. MESA_PYTHON2 := python
  43. DRM_GRALLOC_TOP := hardware/drm_gralloc
  44. classic_drivers := i915 i965
  45. gallium_drivers := swrast freedreno i915g ilo nouveau r300g r600g radeonsi vmwgfx vc4
  46. MESA_GPU_DRIVERS := $(strip $(BOARD_GPU_DRIVERS))
  47. # warn about invalid drivers
  48. invalid_drivers := $(filter-out \
  49. $(classic_drivers) $(gallium_drivers), $(MESA_GPU_DRIVERS))
  50. ifneq ($(invalid_drivers),)
  51. $(warning invalid GPU drivers: $(invalid_drivers))
  52. # tidy up
  53. MESA_GPU_DRIVERS := $(filter-out $(invalid_drivers), $(MESA_GPU_DRIVERS))
  54. endif
  55. # host and target must be the same arch to generate matypes.h
  56. ifeq ($(TARGET_ARCH),$(HOST_ARCH))
  57. MESA_ENABLE_ASM := true
  58. else
  59. MESA_ENABLE_ASM := false
  60. endif
  61. ifneq ($(filter $(classic_drivers), $(MESA_GPU_DRIVERS)),)
  62. MESA_BUILD_CLASSIC := true
  63. else
  64. MESA_BUILD_CLASSIC := false
  65. endif
  66. ifneq ($(filter $(gallium_drivers), $(MESA_GPU_DRIVERS)),)
  67. MESA_BUILD_GALLIUM := true
  68. else
  69. MESA_BUILD_GALLIUM := false
  70. endif
  71. MESA_ENABLE_LLVM := $(if $(filter radeonsi,$(MESA_GPU_DRIVERS)),true,false)
  72. # add subdirectories
  73. ifneq ($(strip $(MESA_GPU_DRIVERS)),)
  74. SUBDIRS := \
  75. src/loader \
  76. src/mapi \
  77. src/glsl \
  78. src/mesa \
  79. src/util \
  80. src/egl/main \
  81. src/egl/drivers/dri2 \
  82. src/mesa/drivers/dri
  83. ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
  84. SUBDIRS += src/gallium
  85. endif
  86. include $(call all-named-subdir-makefiles,$(SUBDIRS))
  87. endif