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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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 i915g nouveau r300g r600g 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_COMMON_MK := $(MESA_TOP)/Android.common.mk
  32. MESA_PYTHON2 := python
  33. DRM_TOP := external/drm
  34. DRM_GRALLOC_TOP := hardware/drm_gralloc
  35. classic_drivers := i915 i965
  36. gallium_drivers := swrast i915g nouveau r300g r600g vmwgfx
  37. MESA_GPU_DRIVERS := $(strip $(BOARD_GPU_DRIVERS))
  38. # warn about invalid drivers
  39. invalid_drivers := $(filter-out \
  40. $(classic_drivers) $(gallium_drivers), $(MESA_GPU_DRIVERS))
  41. ifneq ($(invalid_drivers),)
  42. $(warning invalid GPU drivers: $(invalid_drivers))
  43. # tidy up
  44. MESA_GPU_DRIVERS := $(filter-out $(invalid_drivers), $(MESA_GPU_DRIVERS))
  45. endif
  46. # host and target must be the same arch to generate matypes.h
  47. ifeq ($(TARGET_ARCH),$(HOST_ARCH))
  48. MESA_ENABLE_ASM := true
  49. else
  50. MESA_ENABLE_ASM := false
  51. endif
  52. ifneq ($(filter $(classic_drivers), $(MESA_GPU_DRIVERS)),)
  53. MESA_BUILD_CLASSIC := true
  54. else
  55. MESA_BUILD_CLASSIC := false
  56. endif
  57. ifneq ($(filter $(gallium_drivers), $(MESA_GPU_DRIVERS)),)
  58. MESA_BUILD_GALLIUM := true
  59. else
  60. MESA_BUILD_GALLIUM := false
  61. endif
  62. ifneq ($(strip $(MESA_GPU_DRIVERS)),)
  63. SUBDIRS := \
  64. src/mapi \
  65. src/glsl \
  66. src/mesa \
  67. src/egl/main
  68. ifeq ($(strip $(MESA_BUILD_CLASSIC)),true)
  69. SUBDIRS += \
  70. src/egl/drivers/dri2 \
  71. src/mesa/drivers/dri
  72. endif
  73. ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
  74. SUBDIRS += src/gallium
  75. endif
  76. # ---------------------------------------
  77. # Build libGLES_mesa
  78. # ---------------------------------------
  79. LOCAL_PATH := $(MESA_TOP)
  80. include $(CLEAR_VARS)
  81. LOCAL_SRC_FILES :=
  82. LOCAL_CFLAGS :=
  83. LOCAL_C_INCLUDES :=
  84. LOCAL_STATIC_LIBRARIES :=
  85. LOCAL_WHOLE_STATIC_LIBRARIES := libmesa_egl
  86. LOCAL_SHARED_LIBRARIES := \
  87. libglapi \
  88. libdl \
  89. libhardware \
  90. liblog \
  91. libcutils
  92. # hardware drivers require DRM
  93. ifneq ($(MESA_GPU_DRIVERS),swrast)
  94. LOCAL_SHARED_LIBRARIES += libdrm
  95. endif
  96. ifeq ($(strip $(MESA_BUILD_CLASSIC)),true)
  97. LOCAL_STATIC_LIBRARIES += libmesa_egl_dri2
  98. endif
  99. ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
  100. gallium_DRIVERS :=
  101. # swrast
  102. gallium_DRIVERS += libmesa_pipe_softpipe libmesa_winsys_sw_android
  103. # i915g
  104. ifneq ($(filter i915g, $(MESA_GPU_DRIVERS)),)
  105. gallium_DRIVERS += libmesa_winsys_i915 libmesa_pipe_i915
  106. LOCAL_SHARED_LIBRARIES += libdrm_intel
  107. endif
  108. # nouveau
  109. ifneq ($(filter nouveau, $(MESA_GPU_DRIVERS)),)
  110. gallium_DRIVERS += \
  111. libmesa_winsys_nouveau \
  112. libmesa_pipe_nvc0 \
  113. libmesa_pipe_nv50 \
  114. libmesa_pipe_nvfx \
  115. libmesa_pipe_nouveau
  116. LOCAL_SHARED_LIBRARIES += libdrm_nouveau
  117. endif
  118. # r300g/r600g
  119. ifneq ($(filter r300g r600g, $(MESA_GPU_DRIVERS)),)
  120. gallium_DRIVERS += libmesa_winsys_radeon
  121. ifneq ($(filter r300g, $(MESA_GPU_DRIVERS)),)
  122. gallium_DRIVERS += libmesa_pipe_r300
  123. endif
  124. ifneq ($(filter r600g, $(MESA_GPU_DRIVERS)),)
  125. gallium_DRIVERS += libmesa_pipe_r600
  126. endif
  127. endif
  128. # vmwgfx
  129. ifneq ($(filter vmwgfx, $(MESA_GPU_DRIVERS)),)
  130. gallium_DRIVERS += libmesa_winsys_svga libmesa_pipe_svga
  131. endif
  132. #
  133. # Notes about the order here:
  134. #
  135. # * libmesa_st_egl depends on libmesa_winsys_sw_android in $(gallium_DRIVERS)
  136. # * libmesa_pipe_r300 in $(gallium_DRIVERS) depends on libmesa_st_mesa and
  137. # libmesa_glsl
  138. # * libmesa_st_mesa depends on libmesa_glsl
  139. # * libmesa_glsl depends on libmesa_glsl_utils
  140. #
  141. LOCAL_STATIC_LIBRARIES := \
  142. libmesa_egl_gallium \
  143. libmesa_st_egl \
  144. $(gallium_DRIVERS) \
  145. libmesa_st_mesa \
  146. libmesa_glsl \
  147. libmesa_glsl_utils \
  148. libmesa_gallium \
  149. $(LOCAL_STATIC_LIBRARIES)
  150. endif # MESA_BUILD_GALLIUM
  151. LOCAL_MODULE := libGLES_mesa
  152. LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/egl
  153. include $(MESA_COMMON_MK)
  154. include $(BUILD_SHARED_LIBRARY)
  155. mkfiles := $(patsubst %,$(MESA_TOP)/%/Android.mk,$(SUBDIRS))
  156. include $(mkfiles)
  157. endif # MESA_GPU_DRIVERS