vulkan/wsi/wayland: Remove roundtrip when creating image
[mesa.git] / Android.mk
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
24 # BOARD_GPU_DRIVERS should be defined. The valid values are
25 #
26 # classic drivers: i915 i965
27 # gallium drivers: swrast freedreno i915g nouveau r300g r600g radeonsi vc4 virgl vmwgfx
28 #
29 # The main target is libGLES_mesa. For each classic driver enabled, a DRI
30 # module will also be built. DRI modules will be loaded by libGLES_mesa.
31
32 MESA_TOP := $(call my-dir)
33
34 MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION)))
35
36 MESA_DRI_MODULE_REL_PATH := dri
37 MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$(MESA_DRI_MODULE_REL_PATH)
38 MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$(MESA_DRI_MODULE_REL_PATH)
39
40 MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
41 MESA_PYTHON2 := python
42
43 # Lists to convert driver names to boolean variables
44 # in form of <driver name>.<boolean make variable>
45 classic_drivers := i915.HAVE_I915_DRI i965.HAVE_I965_DRI
46 gallium_drivers := \
47 swrast.HAVE_GALLIUM_SOFTPIPE \
48 freedreno.HAVE_GALLIUM_FREEDRENO \
49 i915g.HAVE_GALLIUM_I915 \
50 nouveau.HAVE_GALLIUM_NOUVEAU \
51 r300g.HAVE_GALLIUM_R300 \
52 r600g.HAVE_GALLIUM_R600 \
53 radeonsi.HAVE_GALLIUM_RADEONSI \
54 vmwgfx.HAVE_GALLIUM_VMWGFX \
55 vc4.HAVE_GALLIUM_VC4 \
56 virgl.HAVE_GALLIUM_VIRGL
57
58 ifeq ($(BOARD_GPU_DRIVERS),all)
59 MESA_BUILD_CLASSIC := $(filter HAVE_%, $(subst ., , $(classic_drivers)))
60 MESA_BUILD_GALLIUM := $(filter HAVE_%, $(subst ., , $(gallium_drivers)))
61 else
62 # Warn if we have any invalid driver names
63 $(foreach d, $(BOARD_GPU_DRIVERS), \
64 $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \
65 , \
66 $(warning invalid GPU driver: $(d)) \
67 ) \
68 )
69 MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers)))))
70 MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers)))))
71 endif
72 $(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true))
73
74 # host and target must be the same arch to generate matypes.h
75 ifeq ($(TARGET_ARCH),$(HOST_ARCH))
76 MESA_ENABLE_ASM := true
77 else
78 MESA_ENABLE_ASM := false
79 endif
80
81 ifneq ($(filter true, $(HAVE_GALLIUM_RADEONSI)),)
82 MESA_ENABLE_LLVM := true
83 endif
84
85 define mesa-build-with-llvm
86 $(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5), \
87 $(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
88 $(if $(filter 6,$(MESA_ANDROID_MAJOR_VERSION)), \
89 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0307 -DMESA_LLVM_VERSION_PATCH=0) \
90 $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
91 $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
92 $(if $(filter 7,$(MESA_ANDROID_MAJOR_VERSION)), \
93 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0308 -DMESA_LLVM_VERSION_PATCH=0) \
94 $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
95 $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
96 $(if $(filter O,$(MESA_ANDROID_MAJOR_VERSION)), \
97 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0309 -DMESA_LLVM_VERSION_PATCH=0) \
98 $(eval LOCAL_HEADER_LIBRARIES += llvm-headers),)
99 endef
100
101 # add subdirectories
102 SUBDIRS := \
103 src/gbm \
104 src/loader \
105 src/mapi \
106 src/compiler \
107 src/mesa \
108 src/util \
109 src/egl \
110 src/amd \
111 src/intel \
112 src/mesa/drivers/dri \
113 src/vulkan
114
115 INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
116 INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
117 include $(INC_DIRS)