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
|
2017-07-01 17:52:49 +02:00
|
|
|
GALLIUM_TARGET_DRIVERS :=
|
2011-08-17 11:38:00 +08:00
|
|
|
|
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
|
|
|
|
2018-07-24 11:09:39 +02:00
|
|
|
SUBDIRS += winsys/sw/kms-dri 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
|
2018-10-23 12:33:09 -07:00
|
|
|
SUBDIRS += winsys/kmsro/drm drivers/kmsro
|
2017-05-03 14:35:20 -05:00
|
|
|
SUBDIRS += winsys/radeon/drm drivers/r300
|
2017-10-10 17:01:29 -05:00
|
|
|
SUBDIRS += winsys/radeon/drm drivers/r600
|
2018-04-01 20:56:07 -04:00
|
|
|
SUBDIRS += winsys/radeon/drm winsys/amdgpu/drm drivers/radeonsi
|
2015-06-03 10:15:31 -07:00
|
|
|
SUBDIRS += winsys/vc4/drm drivers/vc4
|
2019-06-15 07:39:02 +02:00
|
|
|
SUBDIRS += winsys/virgl/common winsys/virgl/drm winsys/virgl/vtest drivers/virgl
|
2011-08-22 11:14:33 +08:00
|
|
|
SUBDIRS += winsys/svga/drm drivers/svga
|
2017-07-04 13:28:38 +02:00
|
|
|
SUBDIRS += winsys/etnaviv/drm drivers/etnaviv drivers/renderonly
|
2017-05-03 14:35:20 -05:00
|
|
|
SUBDIRS += state_trackers/dri
|
2018-12-03 14:15:13 +02:00
|
|
|
SUBDIRS += winsys/iris/drm drivers/iris
|
2019-04-15 12:32:43 +08:00
|
|
|
SUBDIRS += winsys/lima/drm drivers/lima
|
2019-10-22 19:31:52 +02:00
|
|
|
SUBDIRS += winsys/panfrost/drm drivers/panfrost
|
2011-08-22 11:14:33 +08:00
|
|
|
|
2017-05-03 14:35:20 -05:00
|
|
|
# sort to eliminate any duplicates
|
|
|
|
|
INC_DIRS := $(call all-named-subdir-makefiles,$(sort $(SUBDIRS)))
|
|
|
|
|
# targets/dri must be included last
|
|
|
|
|
INC_DIRS += $(call all-named-subdir-makefiles,targets/dri)
|
2015-05-20 11:25:27 +08:00
|
|
|
|
2017-05-03 14:35:20 -05:00
|
|
|
include $(INC_DIRS)
|