24c4bfa4e36472d1e8ed8be5411757246bd8063d
[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 := $(MESA_DRI_MODULE_REL_PATH)
32 else
33 LOCAL_MODULE_PATH := $(MESA_DRI_MODULE_PATH)
34 LOCAL_UNSTRIPPED_PATH := $(MESA_DRI_MODULE_UNSTRIPPED_PATH)
35 endif
36
37 LOCAL_SRC_FILES := target.c
38
39 LOCAL_CFLAGS :=
40
41 LOCAL_SHARED_LIBRARIES := \
42 libdl \
43 libglapi \
44 libexpat \
45
46 ifneq ($(filter freedreno,$(MESA_GPU_DRIVERS)),)
47 LOCAL_CFLAGS += -DGALLIUM_FREEDRENO
48 gallium_DRIVERS += libmesa_winsys_freedreno libmesa_pipe_freedreno
49 LOCAL_SHARED_LIBRARIES += libdrm_freedreno
50 endif
51 ifneq ($(filter i915g,$(MESA_GPU_DRIVERS)),)
52 gallium_DRIVERS += libmesa_winsys_i915 libmesa_pipe_i915
53 LOCAL_SHARED_LIBRARIES += libdrm_intel
54 LOCAL_CFLAGS += -DGALLIUM_I915
55 endif
56 ifneq ($(filter ilo,$(MESA_GPU_DRIVERS)),)
57 gallium_DRIVERS += libmesa_winsys_intel libmesa_pipe_ilo
58 LOCAL_SHARED_LIBRARIES += libdrm_intel
59 LOCAL_CFLAGS += -DGALLIUM_ILO
60 endif
61 ifneq ($(filter nouveau,$(MESA_GPU_DRIVERS)),)
62 gallium_DRIVERS += libmesa_winsys_nouveau libmesa_pipe_nouveau
63 LOCAL_CFLAGS += -DGALLIUM_NOUVEAU
64 LOCAL_SHARED_LIBRARIES += libdrm_nouveau
65 endif
66 ifneq ($(filter r%,$(MESA_GPU_DRIVERS)),)
67 ifneq ($(filter r300g,$(MESA_GPU_DRIVERS)),)
68 gallium_DRIVERS += libmesa_pipe_r300
69 LOCAL_CFLAGS += -DGALLIUM_R300
70 endif
71 ifneq ($(filter r600g,$(MESA_GPU_DRIVERS)),)
72 gallium_DRIVERS += libmesa_pipe_r600
73 LOCAL_CFLAGS += -DGALLIUM_R600
74 endif
75 ifneq ($(filter radeonsi,$(MESA_GPU_DRIVERS)),)
76 gallium_DRIVERS += libmesa_pipe_radeonsi libmesa_winsys_amdgpu
77 LOCAL_SHARED_LIBRARIES += libLLVM libdrm_amdgpu
78 LOCAL_CFLAGS += -DGALLIUM_RADEONSI
79 endif
80 gallium_DRIVERS += libmesa_winsys_radeon libmesa_pipe_radeon
81 LOCAL_SHARED_LIBRARIES += libdrm_radeon
82 endif
83 ifneq ($(filter swrast,$(MESA_GPU_DRIVERS)),)
84 gallium_DRIVERS += libmesa_pipe_softpipe libmesa_winsys_sw_dri
85 LOCAL_CFLAGS += -DGALLIUM_SOFTPIPE
86 endif
87 ifneq ($(filter vc4,$(MESA_GPU_DRIVERS)),)
88 LOCAL_CFLAGS += -DGALLIUM_VC4
89 gallium_DRIVERS += libmesa_winsys_vc4 libmesa_pipe_vc4
90 endif
91 ifneq ($(filter virgl,$(MESA_GPU_DRIVERS)),)
92 LOCAL_CFLAGS += -DGALLIUM_VIRGL
93 gallium_DRIVERS += libmesa_winsys_virgl libmesa_winsys_virgl_vtest libmesa_pipe_virgl
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_WHOLE_STATIC_LIBRARIES := \
104 $(gallium_DRIVERS) \
105 libmesa_st_dri \
106 libmesa_st_mesa \
107 libmesa_glsl \
108 libmesa_compiler \
109 libmesa_nir \
110 libmesa_dri_common \
111 libmesa_megadriver_stub \
112 libmesa_gallium \
113 libmesa_pipe_loader \
114 libmesa_util \
115 libmesa_loader \
116
117 LOCAL_STATIC_LIBRARIES :=
118
119 ifeq ($(MESA_ENABLE_LLVM),true)
120 LOCAL_STATIC_LIBRARIES += \
121 libLLVMR600CodeGen \
122 libLLVMR600Desc \
123 libLLVMR600Info \
124 libLLVMR600AsmPrinter \
125 libelf
126 LOCAL_LDLIBS += $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-lgcc)
127 endif
128
129 include $(GALLIUM_COMMON_MK)
130 include $(BUILD_SHARED_LIBRARY)