android: enable amdgpu winsys in radeonsi driver
[mesa.git] / src / gallium / targets / dri / Android.mk
1 # Mesa 3-D graphics library
2 #
3 # Copyright (C) 2015 Chih-Wei Huang <cwhuang@linux.org.tw>
4 # Copyright (C) 2015 Android-x86 Open Source Project
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 LOCAL_PATH := $(call my-dir)
25
26 include $(CLEAR_VARS)
27
28 LOCAL_MODULE := gallium_dri
29
30 ifeq ($(MESA_LOLLIPOP_BUILD),true)
31 LOCAL_MODULE_RELATIVE_PATH := $(notdir $(MESA_DRI_MODULE_PATH))
32 else
33 LOCAL_MODULE_PATH := $(MESA_DRI_MODULE_PATH)
34 endif
35
36 LOCAL_SRC_FILES := target.c
37
38 LOCAL_CFLAGS := -DDRI_TARGET
39
40 LOCAL_SHARED_LIBRARIES := \
41 libdl \
42 libglapi \
43 libexpat \
44
45 ifneq ($(filter-out swrast,$(MESA_GPU_DRIVERS)),)
46 LOCAL_CFLAGS += -DHAVE_LIBDRM
47 LOCAL_SHARED_LIBRARIES += libdrm
48 endif
49
50 ifneq ($(filter freedreno,$(MESA_GPU_DRIVERS)),)
51 LOCAL_CFLAGS += -DGALLIUM_FREEDRENO
52 gallium_DRIVERS += libmesa_winsys_freedreno libmesa_pipe_freedreno
53 LOCAL_SHARED_LIBRARIES += libdrm_freedreno
54 endif
55 ifneq ($(filter i915g,$(MESA_GPU_DRIVERS)),)
56 gallium_DRIVERS += libmesa_winsys_i915 libmesa_pipe_i915
57 LOCAL_SHARED_LIBRARIES += libdrm_intel
58 LOCAL_CFLAGS += -DGALLIUM_I915
59 endif
60 ifneq ($(filter ilo,$(MESA_GPU_DRIVERS)),)
61 gallium_DRIVERS += libmesa_winsys_intel libmesa_pipe_ilo
62 LOCAL_SHARED_LIBRARIES += libdrm_intel
63 LOCAL_CFLAGS += -DGALLIUM_ILO
64 endif
65 ifneq ($(filter nouveau,$(MESA_GPU_DRIVERS)),)
66 gallium_DRIVERS += libmesa_winsys_nouveau libmesa_pipe_nouveau
67 LOCAL_CFLAGS += -DGALLIUM_NOUVEAU
68 LOCAL_SHARED_LIBRARIES += libdrm_nouveau
69 endif
70 ifneq ($(filter r%,$(MESA_GPU_DRIVERS)),)
71 ifneq ($(filter r300g,$(MESA_GPU_DRIVERS)),)
72 gallium_DRIVERS += libmesa_pipe_r300
73 LOCAL_CFLAGS += -DGALLIUM_R300
74 endif
75 ifneq ($(filter r600g,$(MESA_GPU_DRIVERS)),)
76 gallium_DRIVERS += libmesa_pipe_r600
77 LOCAL_CFLAGS += -DGALLIUM_R600
78 endif
79 ifneq ($(filter radeonsi,$(MESA_GPU_DRIVERS)),)
80 gallium_DRIVERS += libmesa_pipe_radeonsi libmesa_winsys_amdgpu
81 LOCAL_SHARED_LIBRARIES += libLLVM libdrm_amdgpu
82 LOCAL_CFLAGS += -DGALLIUM_RADEONSI
83 endif
84 gallium_DRIVERS += libmesa_winsys_radeon libmesa_pipe_radeon
85 LOCAL_SHARED_LIBRARIES += libdrm_radeon
86 endif
87 ifneq ($(filter swrast,$(MESA_GPU_DRIVERS)),)
88 gallium_DRIVERS += libmesa_pipe_softpipe libmesa_winsys_sw_dri
89 LOCAL_CFLAGS += -DGALLIUM_SOFTPIPE
90 endif
91 ifneq ($(filter vc4,$(MESA_GPU_DRIVERS)),)
92 LOCAL_CFLAGS += -DGALLIUM_VC4
93 gallium_DRIVERS += libmesa_winsys_vc4 libmesa_pipe_vc4
94 endif
95 ifneq ($(filter vmwgfx,$(MESA_GPU_DRIVERS)),)
96 gallium_DRIVERS += libmesa_winsys_svga libmesa_pipe_svga
97 LOCAL_CFLAGS += -DGALLIUM_VMWGFX
98 endif
99 ifneq ($(filter nouveau r600g,$(MESA_GPU_DRIVERS)),)
100 LOCAL_SHARED_LIBRARIES += $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),libc++,libstlport)
101 endif
102
103 LOCAL_STATIC_LIBRARIES := \
104 $(gallium_DRIVERS) \
105 libmesa_st_dri \
106 libmesa_st_mesa \
107 libmesa_glsl \
108 libmesa_dri_common \
109 libmesa_megadriver_stub \
110 libmesa_gallium \
111 libmesa_util \
112 libmesa_loader \
113
114 ifeq ($(MESA_ENABLE_LLVM),true)
115 LOCAL_STATIC_LIBRARIES += \
116 libLLVMR600CodeGen \
117 libLLVMR600Desc \
118 libLLVMR600Info \
119 libLLVMR600AsmPrinter \
120 libelf
121 LOCAL_LDLIBS += $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-lgcc)
122 endif
123
124 include $(GALLIUM_COMMON_MK)
125 include $(BUILD_SHARED_LIBRARY)