blob: ed68aec65ca1a6d3048759c9a96df98ea6472ba4 [file] [log] [blame]
Chia-I Wuc9b21d92011-08-17 11:07:01 +08001# 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:
Chia-I Wu534df792011-08-22 11:21:31 +080027# gallium drivers: swrast i915g nouveau r300g r600g vmwgfx
Chia-I Wuc9b21d92011-08-17 11:07:01 +080028#
29# The main target is libGLES_mesa. There is no classic drivers yet.
30
31MESA_TOP := $(call my-dir)
32MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
33MESA_PYTHON2 := python
34
35DRM_TOP := external/drm
36DRM_GRALLOC_TOP := hardware/drm_gralloc
37
38classic_drivers :=
Chia-I Wu534df792011-08-22 11:21:31 +080039gallium_drivers := swrast i915g nouveau r300g r600g vmwgfx
Chia-I Wuc9b21d92011-08-17 11:07:01 +080040
Chia-I Wu09b5f1f2011-08-25 21:36:19 +080041MESA_GPU_DRIVERS := $(strip $(BOARD_GPU_DRIVERS))
Chia-I Wuc9b21d92011-08-17 11:07:01 +080042
43# warn about invalid drivers
44invalid_drivers := $(filter-out \
45 $(classic_drivers) $(gallium_drivers), $(MESA_GPU_DRIVERS))
46ifneq ($(invalid_drivers),)
47$(warning invalid GPU drivers: $(invalid_drivers))
48# tidy up
49MESA_GPU_DRIVERS := $(filter-out $(invalid_drivers), $(MESA_GPU_DRIVERS))
50endif
51
52# host and target must be the same arch to generate matypes.h
53ifeq ($(TARGET_ARCH),$(HOST_ARCH))
54MESA_ENABLE_ASM := true
55else
56MESA_ENABLE_ASM := false
57endif
58
59ifneq ($(filter $(classic_drivers), $(MESA_GPU_DRIVERS)),)
60MESA_BUILD_CLASSIC := true
61else
62MESA_BUILD_CLASSIC := false
63endif
64
65ifneq ($(filter $(gallium_drivers), $(MESA_GPU_DRIVERS)),)
66MESA_BUILD_GALLIUM := true
67else
68MESA_BUILD_GALLIUM := false
69endif
70
71ifneq ($(strip $(MESA_GPU_DRIVERS)),)
72
Chia-I Wu2a77dc02011-08-17 11:24:11 +080073SUBDIRS := \
Chia-I Wuee41fc82011-08-17 12:10:12 +080074 src/mapi \
Chia-I Wub81b82d2011-08-17 11:56:43 +080075 src/glsl \
Chia-I Wuee40f182011-08-17 11:31:36 +080076 src/mesa \
Chia-I Wu2a77dc02011-08-17 11:24:11 +080077 src/egl/main
Chia-I Wu688db6e2011-08-17 11:38:00 +080078
79ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
80SUBDIRS += src/gallium
81endif
82
Chia-I Wuc9b21d92011-08-17 11:07:01 +080083# ---------------------------------------
84# Build libGLES_mesa
85# ---------------------------------------
86
87LOCAL_PATH := $(MESA_TOP)
88
89include $(CLEAR_VARS)
90
91LOCAL_SRC_FILES :=
92LOCAL_CFLAGS :=
93LOCAL_C_INCLUDES :=
94
Chia-I Wu327de222011-08-17 12:19:23 +080095LOCAL_STATIC_LIBRARIES :=
96LOCAL_WHOLE_STATIC_LIBRARIES := libmesa_egl
97
98LOCAL_SHARED_LIBRARIES := \
99 libglapi \
Chia-I Wu327de222011-08-17 12:19:23 +0800100 libdl \
101 libhardware \
102 liblog \
103 libcutils
104
Chia-I Wu09b5f1f2011-08-25 21:36:19 +0800105# hardware drivers require DRM
106ifneq ($(MESA_GPU_DRIVERS),swrast)
107LOCAL_SHARED_LIBRARIES += libdrm
108endif
109
Chia-I Wu327de222011-08-17 12:19:23 +0800110ifeq ($(strip $(MESA_BUILD_GALLIUM)),true)
111
112gallium_DRIVERS :=
113
114# swrast
115gallium_DRIVERS += libmesa_pipe_softpipe libmesa_winsys_sw_android
116
Chia-I Wu99be9682011-08-22 11:04:46 +0800117# i915g
118ifneq ($(filter i915g, $(MESA_GPU_DRIVERS)),)
119gallium_DRIVERS += libmesa_winsys_i915 libmesa_pipe_i915
120LOCAL_SHARED_LIBRARIES += libdrm_intel
121endif
122
Chia-I Wu534df792011-08-22 11:21:31 +0800123# nouveau
124ifneq ($(filter nouveau, $(MESA_GPU_DRIVERS)),)
125gallium_DRIVERS += \
126 libmesa_winsys_nouveau \
127 libmesa_pipe_nvc0 \
128 libmesa_pipe_nv50 \
129 libmesa_pipe_nvfx \
130 libmesa_pipe_nouveau
131LOCAL_SHARED_LIBRARIES += libdrm_nouveau
132endif
133
Chia-I Wuc696d652011-08-22 10:45:29 +0800134# r300g/r600g
135ifneq ($(filter r300g r600g, $(MESA_GPU_DRIVERS)),)
Chia-I Wu7b1972d2011-08-19 14:35:45 +0800136gallium_DRIVERS += libmesa_winsys_radeon
Chia-I Wuc696d652011-08-22 10:45:29 +0800137ifneq ($(filter r300g, $(MESA_GPU_DRIVERS)),)
138gallium_DRIVERS += libmesa_pipe_r300
139endif
140ifneq ($(filter r600g, $(MESA_GPU_DRIVERS)),)
Chia-I Wu7b1972d2011-08-19 14:35:45 +0800141gallium_DRIVERS += libmesa_pipe_r600 libmesa_winsys_r600
142endif
Chia-I Wuc696d652011-08-22 10:45:29 +0800143endif
Chia-I Wu7b1972d2011-08-19 14:35:45 +0800144
Chia-I Wu04dbb372011-08-22 11:14:33 +0800145# vmwgfx
146ifneq ($(filter vmwgfx, $(MESA_GPU_DRIVERS)),)
147gallium_DRIVERS += libmesa_winsys_svga libmesa_pipe_svga
148endif
149
Chia-I Wu327de222011-08-17 12:19:23 +0800150#
151# Notes about the order here:
152#
153# * libmesa_st_egl depends on libmesa_winsys_sw_android in $(gallium_DRIVERS)
Chia-I Wuc696d652011-08-22 10:45:29 +0800154# * libmesa_pipe_r300 in $(gallium_DRIVERS) depends on libmesa_st_mesa and
155# libmesa_glsl
Chia-I Wu327de222011-08-17 12:19:23 +0800156# * libmesa_st_mesa depends on libmesa_glsl
157# * libmesa_glsl depends on libmesa_glsl_utils
158#
159LOCAL_STATIC_LIBRARIES := \
160 libmesa_egl_gallium \
161 libmesa_st_egl \
162 $(gallium_DRIVERS) \
163 libmesa_st_mesa \
164 libmesa_glsl \
165 libmesa_glsl_utils \
166 libmesa_gallium \
167 $(LOCAL_STATIC_LIBRARIES)
168
169endif # MESA_BUILD_GALLIUM
170
Chia-I Wuc9b21d92011-08-17 11:07:01 +0800171LOCAL_MODULE := libGLES_mesa
172LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/egl
173
174include $(MESA_COMMON_MK)
175include $(BUILD_SHARED_LIBRARY)
176
Chia-I Wu688db6e2011-08-17 11:38:00 +0800177mkfiles := $(patsubst %,$(MESA_TOP)/%/Android.mk,$(SUBDIRS))
Chia-I Wu2a77dc02011-08-17 11:24:11 +0800178include $(mkfiles)
Chia-I Wu688db6e2011-08-17 11:38:00 +0800179
Chia-I Wuc9b21d92011-08-17 11:07:01 +0800180endif # MESA_GPU_DRIVERS