android: add rules to build a gallium_dri.so
[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 -DHAVE_LIBDRM
39
40 LOCAL_SHARED_LIBRARIES := \
41 libdl \
42 libglapi \
43 libexpat \
44
45 # swrast only?
46 ifeq ($(MESA_GPU_DRIVERS),swrast)
47 LOCAL_CFLAGS += -D__NOT_HAVE_DRM_H
48 else
49 LOCAL_SHARED_LIBRARIES += libdrm
50 endif
51
52 ifneq ($(filter freedreno,$(MESA_GPU_DRIVERS)),)
53 LOCAL_CFLAGS += -DGALLIUM_FREEDRENO
54 gallium_DRIVERS += libmesa_winsys_freedreno libmesa_pipe_freedreno
55 LOCAL_SHARED_LIBRARIES += libdrm_freedreno
56 endif
57 ifneq ($(filter i915g,$(MESA_GPU_DRIVERS)),)
58 gallium_DRIVERS += libmesa_winsys_i915 libmesa_pipe_i915
59 LOCAL_SHARED_LIBRARIES += libdrm_intel
60 LOCAL_CFLAGS += -DGALLIUM_I915
61 endif
62 ifneq ($(filter ilo,$(MESA_GPU_DRIVERS)),)
63 gallium_DRIVERS += libmesa_winsys_intel libmesa_pipe_ilo
64 LOCAL_SHARED_LIBRARIES += libdrm_intel
65 LOCAL_CFLAGS += -DGALLIUM_ILO
66 endif
67 ifneq ($(filter nouveau,$(MESA_GPU_DRIVERS)),)
68 gallium_DRIVERS += libmesa_winsys_nouveau libmesa_pipe_nouveau
69 LOCAL_CFLAGS += -DGALLIUM_NOUVEAU
70 LOCAL_SHARED_LIBRARIES += libdrm_nouveau
71 endif
72 ifneq ($(filter r%,$(MESA_GPU_DRIVERS)),)
73 ifneq ($(filter r300g,$(MESA_GPU_DRIVERS)),)
74 gallium_DRIVERS += libmesa_pipe_r300
75 LOCAL_CFLAGS += -DGALLIUM_R300
76 endif
77 ifneq ($(filter r600g,$(MESA_GPU_DRIVERS)),)
78 gallium_DRIVERS += libmesa_pipe_r600
79 LOCAL_CFLAGS += -DGALLIUM_R600
80 endif
81 ifneq ($(filter radeonsi,$(MESA_GPU_DRIVERS)),)
82 gallium_DRIVERS += libmesa_pipe_radeonsi
83 LOCAL_CFLAGS += -DGALLIUM_RADEONSI
84 endif
85 gallium_DRIVERS += libmesa_winsys_radeon libmesa_pipe_radeon
86 LOCAL_SHARED_LIBRARIES += libdrm_radeon
87 endif
88 ifneq ($(filter swrast,$(MESA_GPU_DRIVERS)),)
89 gallium_DRIVERS += libmesa_pipe_softpipe libmesa_winsys_sw_dri libmesa_winsys_sw_kms_dri
90 LOCAL_CFLAGS += -DGALLIUM_SOFTPIPE
91 endif
92 ifneq ($(filter vmwgfx,$(MESA_GPU_DRIVERS)),)
93 gallium_DRIVERS += libmesa_winsys_svga libmesa_pipe_svga
94 LOCAL_CFLAGS += -DGALLIUM_VMWGFX
95 endif
96 ifneq ($(filter nouveau r600g,$(MESA_GPU_DRIVERS)),)
97 LOCAL_SHARED_LIBRARIES += libstlport
98 endif
99
100 LOCAL_STATIC_LIBRARIES := \
101 $(gallium_DRIVERS) \
102 libmesa_st_dri \
103 libmesa_st_mesa \
104 libmesa_glsl \
105 libmesa_dri_common \
106 libmesa_megadriver_stub \
107 libmesa_gallium \
108 libmesa_util \
109 libmesa_loader \
110
111 include $(GALLIUM_COMMON_MK)
112 include $(BUILD_SHARED_LIBRARY)