2011-08-17 11:38:00 +08:00
|
|
|
# Mesa 3-D graphics library
|
|
|
|
|
#
|
|
|
|
|
# Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
|
|
|
|
|
# Copyright (C) 2010-2011 LunarG Inc.
|
|
|
|
|
#
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
# to deal in the Software without restriction, including without limitation
|
|
|
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
#
|
|
|
|
|
# The above copyright notice and this permission notice shall be included
|
|
|
|
|
# in all copies or substantial portions of the Software.
|
|
|
|
|
#
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
# DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
# src/gallium/Android.mk
|
|
|
|
|
|
|
|
|
|
GALLIUM_TOP := $(call my-dir)
|
|
|
|
|
GALLIUM_COMMON_MK := $(GALLIUM_TOP)/Android.common.mk
|
|
|
|
|
|
2014-07-20 22:20:04 +01:00
|
|
|
SUBDIRS := auxiliary
|
2015-10-14 23:44:17 +01:00
|
|
|
SUBDIRS += auxiliary/pipe-loader
|
2014-07-20 22:20:04 +01:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Gallium drivers and their respective winsys
|
|
|
|
|
#
|
2011-08-17 11:38:00 +08:00
|
|
|
|
2015-07-07 21:02:40 +01:00
|
|
|
SUBDIRS += winsys/sw/dri drivers/softpipe
|
2014-07-20 22:13:34 +01:00
|
|
|
SUBDIRS += winsys/freedreno/drm drivers/freedreno
|
2011-08-22 11:04:46 +08:00
|
|
|
SUBDIRS += winsys/i915/drm drivers/i915
|
2017-05-03 14:35:19 -05:00
|
|
|
SUBDIRS += winsys/nouveau/drm drivers/nouveau
|
|
|
|
|
SUBDIRS += drivers/r300 drivers/r600 drivers/radeon drivers/radeonsi
|
|
|
|
|
SUBDIRS += winsys/amdgpu/drm winsys/radeon/drm
|
2015-06-03 10:15:31 -07:00
|
|
|
SUBDIRS += winsys/vc4/drm drivers/vc4
|
2016-01-29 12:52:28 -06:00
|
|
|
SUBDIRS += winsys/virgl/drm winsys/virgl/vtest drivers/virgl
|
2011-08-22 11:14:33 +08:00
|
|
|
SUBDIRS += winsys/svga/drm drivers/svga
|
|
|
|
|
|
2015-05-20 11:25:28 +08:00
|
|
|
SUBDIRS += state_trackers/dri targets/dri
|
2015-05-20 11:25:27 +08:00
|
|
|
|
|
|
|
|
include $(call all-named-subdir-makefiles,$(SUBDIRS))
|