History log of /external/mesa3d/src/gallium/Makefile.am
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
e8626e3b317035352148a6af15a2b781eba6e707 23-Dec-2016 Christian Gmeiner <christian.gmeiner@gmail.com> imx: gallium driver for imx-drm scanout driver

Changes from V1 -> V2:
- updated Copyright
- added $(top_srcdir)/src/gallium/winsys to include path (suggested by Emil)
- adapted driver to new renderonly API

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Acked-by: Emil Velikov <emil.velikov@collabora.com>
/external/mesa3d/src/gallium/Makefile.am
c9e8b49b885242d84ba031dacef5aa4a5ac1e5b6 23-Dec-2016 The etnaviv authors <etnaviv@lists.freedesktop.org> etnaviv: gallium driver for Vivante GPUs

This driver supports a wide range of Vivante IP cores like GC880,
GC1000, GC2000 and GC3000.

Changes from V1 -> V2:
- added missing files to actually integrate the driver into build system.
- adapted driver to new renderonly API

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Wladimir J. van der Laan <laanwj@gmail.com>
Acked-by: Emil Velikov <emil.velikov@collabora.com>
/external/mesa3d/src/gallium/Makefile.am
a92910ae37878b441ecb1c488f0a40d80a48f6fe 18-Apr-2016 Chuck Atkins <chuck.atkins@kitware.com> glx: Refactor the configure options for glx implementation choice (v3)

Instead of cascading support for various different implementations of
GLX, all three options are now specified through the --enable-glx
option:

--enable-glx=dri : Enable the DRI-based GLX
--enable-glx=xlib : Enable the classic Xlib-based GLX
--enable-glx=gallium-xlib : Enable the gallium Xlib-based GLX
--enable-glx[=yes] : Defaults to dri if DRI is enabled, else
gallium-xlib if gallium is enabled, else
xlib

This removes the --enable-xlib-glx option and fixes a bug in which both
the classic xlib-glx and gallium xlib-glx implementations were getting
built causing different versioned and conflicting libGL libraries to be
installed.

v2: Changes from various review feedback from Emil:
a) Fixed typos
b) Corrected help docs for new option
c) Added appropriate a-b and r-b tags in commit msg
d) Fixed various GLX related dependency checks.
v3: Rebased to current master and added changelog in commit msg

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94086

Acked-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
/external/mesa3d/src/gallium/Makefile.am
bb949e262cb5c4fffe991debc605447e15322666 13-Apr-2016 Emil Velikov <emil.velikov@collabora.com> gallium/swr: fold the almost identical Makefiles

Rather than having two almost identical Makefiles, with various VPATH
hacks just fold them, using COMMON_* variables and actually getting
things buildable/shipable.

v2: whitespace fixes, remove Makefile.sources-arch

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Tim Rowley <timothy.o.rowley@intel.com>
/external/mesa3d/src/gallium/Makefile.am
7bb193d28c4195b5c3dd7897e6c9f5b0df2749cb 25-Feb-2016 Tim Rowley <timothy.o.rowley@intel.com> mesa/build: add OpenSWR to build

Tested on Linux (centos, ubuntu, and suse variants)

Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Acked-by: Jose Fonseca <jfonseca@vmware.com>
/external/mesa3d/src/gallium/Makefile.am
950e06a29bd664af0cb454fc2f35f8cc4153e7f1 17-Oct-2015 Emil Velikov <emil.l.velikov@gmail.com> automake: remove no longer needed HAVE_LOADER_GALLIUM conditional

As of last few commits we have a static and dynamic pipe-loader. Either
of which will be used with (almost) all targets..

We can look into allowing the user to select which way the targets are
built, be that 'static for all' or 'per target' in follow up commits.
After which we can look into building only the static or dynamic
version, although building both shouldn't cause any issues.

Hack/workaround alert:
Control the standalone pipe-drivers via HAVE_CLOVER. Will need to be
fixed as the targets are converted/configure knobs are in.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Rob Clark <robclark@freedesktop.org>
/external/mesa3d/src/gallium/Makefile.am
be430726e2586e1c9932953325b45e0e6a39f301 11-Oct-2015 Emil Velikov <emil.l.velikov@gmail.com> configure: use HAVE_DRISW_KMS when handling kms swrast

Using HAVE_DRI2 to manage it seems counter-intuitive.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Rob Clark <robclark@freedesktop.org>
/external/mesa3d/src/gallium/Makefile.am
b3b82fe8ea1f7d02c93513920143cba2fe145b6c 13-Mar-2015 Dave Airlie <airlied@gmail.com> virgl/vtest: add vtest driver

virgl/vtest is a swrast driver that allows the
virgl acceleration to be tested without having
a virtual machine.

The backend has a unix socket server that
this connects to.

This is run by setting
LIBGL_ALWAYS_SOFTWARE=y
GALLIUM_DRIVER=virpipe

In this mode all renderering is sent over
a socket to the remote renderer, and the
results are readback and copies to the screen
using drisw. This works well enough to develop
new features and to help debug.

Signed-off-by: Dave Airlie <airlied@redhat.com>
/external/mesa3d/src/gallium/Makefile.am
a8987b88ff1db4ac00720a9b56c4bc3aeb666537 22-Jan-2015 Dave Airlie <airlied@redhat.com> virgl: add driver for virtio-gpu 3D (v2)

virgl is the 3D acceleration backend for the
virtio-gpu shipping with qemu.

The 3D acceleration is designed around gallium
and TGSI as the virtualisation layer. The backend
renderer translates the virgl interface into
OpenGL currently.

This is the initial import of the driver to mesa.

The kernel driver portions are lined up for drm-next.

Currently this driver supports up to GL3.3 and some
misc extensions if the host driver exposes it. It is
planned to iterate the virgl API to new GL levels
as mesa host drivers gain features.

v2: fix resource tracking across flushes to avoid
->bind hack in mapping.
consolidate mapping and waiting code for transfers.
use u_range for dirt tracking.
handle larger shaders in protocol.
include virtgpu_drm.h in mesa for now.
add translation layer for gallium tgsi to virgl tgsi.

Signed-off-by: Dave Airlie <airlied@redhat.com>
/external/mesa3d/src/gallium/Makefile.am
525921ed51176255474c73adacfc6801a7bf2783 04-Jul-2015 Marek Olšák <marek.olsak@amd.com> gallium/ddebug: new pipe for hang detection and driver state dumping (v2)

v2: lots of improvements

This is like identity or trace, but simpler. It doesn't wrap most states.

Run with:
GALLIUM_DDEBUG=1000 [executable]
where "executable" is the app and "1000" is in miliseconds, meaning that
the context will be considered hung if a fence fails to signal in 1000 ms.

If that happens, all shaders, context states, bound resources, draw
parameters, and driver debug information (if any) will be dumped into:
/home/$username/dd_dumps/$processname_$pid_$index.

Note that the context is flushed after every draw/clear/copy/blit operation
and then waited for to find the exact call that hangs.

You can also do:
GALLIUM_DDEBUG=always
to do the dumping after every draw/clear/copy/blit operation without
flushing and waiting.

Examples of driver states that can be dumped are:
- Hardware status registers saying which hw block is busy (hung).
- Disassembled shaders in a human-readable form.
- The last submitted command buffer in a human-readable form.

v2: drop pipe-loader changes, drop SConscript
rename dd.h -> dd_pipe.h

Acked-by: Christian König <christian.koenig@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
/external/mesa3d/src/gallium/Makefile.am
2eb067db0febcd71b4182153155e3e43f215624c 16-Apr-2015 Marek Olšák <marek.olsak@amd.com> winsys/amdgpu: add a new winsys for the new kernel driver

v2: - lots of changes according to Emil Velikov's comments
- implemented radeon_winsys::read_registers

v3: - a lot of new work, many of them adapt to libdrm interface changes
Squashed patches:
winsys/amdgpu: implement radeon_winsys context support
winsys/amdgpu: add reference counting for contexts
winsys/amdgpu: add userptr support
winsys/amdgpu: allocate IBs like normal buffers
winsys/amdgpu: add IBs to the buffer list, adapt to interface changes
winsys/amdgpu: don't use KMS handles as reloc hash keys
winsys/amdgpu: sync buffer accesses to different rings
winsys/amdgpu: use dependencies instead of waiting for last fence v2
gallium/radeon: unify buffer_wait and buffer_is_busy in the winsys interface (amdgpu part)
winsys/amdgpu: track fences per ring and be thread-safe
winsys/amdgpu: simplify waiting on a variable in amdgpu_fence_wait
gallium/radeon: allow the winsys to choose the IB size (amdgpu part)
winsys/amdgpu: switch to new amdgpu_cs_query_fence_status interface
winsys/amdgpu: handle fence and dependencies merge
winsys/amdgpu follow libdrm change to move user fence into UMD
winsys/amdgpu: use amdgpu_bo_va_op for va map/unmap v2
winsys/amdgpu: use the new tiling flags
winsys/amdgpu: switch to new GTT_USWC definition
winsys/amdgpu: expose amdgpu_cs_query_reset_state to drivers
winsys/amdgpu: fix valgrind warnings
winsys/amdgpu: don't use VRAM with APUs that don't have much of it
winsys/amdgpu: require LLVM 3.6.1 for VI because of bug fixes there
winsys/amdgpu: remove amdgpu_winsys::num_cpus
winsys/amdgpu: align BO size to page size
winsys/amdgpu: reduce BO cache timeout
winsys/amdgpu: remove useless flushing and waiting in amdgpu_bo_set_tiling
winsys/amdgpu: use amdgpu_device_handle as a unique device ID instead of fd
winsys/amdgpu: use safer access to amdgpu_fence_wait::signalled
winsys/amdgpu: allow maximum IB size of 4 MB
winsys/amdgpu: add ip_instance into amdgpu_fence
gallium/radeon: add RING_COMPUTE instead of RADEON_FLUSH_COMPUTE
winsys/amdgpu: set the ring type at CS initilization
winsys/amdgpu: query the GART page size from the kernel
winsys/amdgpu: correctly wait for shared buffers to become idle
winsys/amdgpu: set the amdgpu_cs_fence structure only once at fence creation
winsys/amdgpu: add a specific error message for cs_submit -> -ENOMEM
winsys/amdgpu: check num_active_ioctls before calling amdgpu_bo_wait_for_idle
winsys/amdgpu: clear user fence BO after allocating it
winsys/amdgpu: fix user fences
winsys/amdgpu: make amdgpu_winsys_create public
winsys/amdgpu: remove thread offloading
winsys/amdgpu: flatten the amdgpu_cs_context structure and simplify more

v4: require libdrm 2.4.63
/external/mesa3d/src/gallium/Makefile.am
429a4355259b3c4fe80838b499a8d8afa41f290a 14-Mar-2015 Emil Velikov <emil.l.velikov@gmail.com> galahad: remove driver

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
65a8d4d6ddbed8fd47cd4efc38d4a344add5ec5a 14-Mar-2015 Emil Velikov <emil.l.velikov@gmail.com> winsys/sw/fbdev: remove unused software winsys

st/egl was its only user.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
1081ed9dc38e7f84b3a7a6e4461a188ae30bd9a2 14-Mar-2015 Emil Velikov <emil.l.velikov@gmail.com> winsys/sw/wayland: remove unused winsys

st/egl was its only user.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
48c7461d5a0d5cb0f3df5025d7849d27e73a80b3 14-Mar-2015 Emil Velikov <emil.l.velikov@gmail.com> st/gbm: remove state-tracker

st/egl was its only user.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
3acd7a34ab05b87521b74f626ec637e7fdcc6595 03-Mar-2015 Jose Fonseca <jfonseca@vmware.com> st/vega: Remove.

OpenVG API seems to have dwindled away. The code
would still be interesting if we wanted to implement NV_path_rendering
but given the trend of the next gen graphics APIs, it seems
unlikely that this becomes ARB or core.

v2: Remove a few "openvg" references left, per Emil Velikov.

Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>

v3: Update release notes.
/external/mesa3d/src/gallium/Makefile.am
5564c361b5cc1f5ec4be3622d7f9be601e3c268a 03-Mar-2015 Jose Fonseca <jfonseca@vmware.com> st/egl: Remove.

Largely superseeded by src/egl, and
WGL/GLX_EXT_create_context_es_profile extensions.

Note this will break Android.mk with gallium drivers -- somebody
familiar with that build infrastructure will need to update it to use
gallium drivers through egl_dri2.

v2: Remove the _EGL_BUILT_IN_DRIVER_GALLIUM define from
src/egl/main/Android.mk; and update the src/egl/main/Sconscript to
create a SharedLibrary, add versioning, create symlink - copy the bits
from egl-static, per Emil Velikov.

Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>

v3: Disallow undefined symbols in libEGL.so. Update release notes
/external/mesa3d/src/gallium/Makefile.am
9a07435ff885277aba670eb59c039a748175c702 27-Feb-2015 Jose Fonseca <jfonseca@vmware.com> identity: Remove.

It's unmaintained, and most likely broken: I use trace driver every now
and then, and everytime I do I need to fix it up.

It's also unused: identity_screen_create is never called.

Above all, it's dead weight: if identity driver had the infrastructure
for other pass-through drivers (like trace and rbug), then it would make
sense on its own right. But as it is implemmented, it's just another
driver to (forget) to update whenever there is a gallium interface
change.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
/external/mesa3d/src/gallium/Makefile.am
4cc8d66f745b89ba795b3d2fa9ed063b365b35ca 17-Dec-2014 Matt Turner <mattst88@gmail.com> gallium: Add egl and gbm to distribution.
/external/mesa3d/src/gallium/Makefile.am
75c7a7114fc94b17aaadb6d737d2b5fc92bf6240 08-Dec-2014 Matt Turner <mattst88@gmail.com> gallium: Remove Android files from distribution.

Android builds Mesa from git, so there don't need to be in the tarball.
/external/mesa3d/src/gallium/Makefile.am
43ac31dff0fb359f4be3f919aec70e8b632ac377 07-Dec-2014 Matt Turner <mattst88@gmail.com> mesa: Add notes/readme files to distribution.
/external/mesa3d/src/gallium/Makefile.am
952b324b23b1ff8596e3cb168c16a1feb372b32b 07-Dec-2014 Matt Turner <mattst88@gmail.com> mesa: Add scons files to distribution.
/external/mesa3d/src/gallium/Makefile.am
0ac98e729650b2809785bfc673ea1294d849417f 07-Dec-2014 Matt Turner <mattst88@gmail.com> docs: Add to distribution.
/external/mesa3d/src/gallium/Makefile.am
fdd96578ef2dfe9c4ad5aab5858036298d444a64 04-Aug-2011 Joakim Sindholt <opensource@zhasha.com> nine: Add state tracker nine for Direct3D9 (v3)

Work of Joakim Sindholt (zhasha) and Christoph Bumiller (chrisbmr).
DRI3 port done by Axel Davy (mannerov).

v2: - nine_debug.c: klass extended from 32 chars to 96 (for sure) by glennk
- Nine improvements by Axel Davy (which also fixed some wine tests)
- by Emil Velikov:
- convert to static/shared drivers
- Sort and cleanup the includes
- Use AM_CPPFLAGS for the defines
- Add the linker garbage collector
- Restrict the exported symbols (think llvm)

v3: - small nine fixes
- build system improvements by Emil Velikov

v4: [Emil Velikov]
- Do no link against libudev. No longer needed.

Acked-by: Jose Fonseca <jfonseca@vmware.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Axel Davy <axel.davy@ens.fr>
Signed-off-by: David Heidelberg <david@ixit.cz>
/external/mesa3d/src/gallium/Makefile.am
ded56e467437b2ee33ee01405072cb1c63fb8764 14-Oct-2014 Emil Velikov <emil.l.velikov@gmail.com> gallium: ship the gallium API headers

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
c46c551c56f78c6bf9e63524c89478695fc4f525 01-Nov-2014 Marek Olšák <marek.olsak@amd.com> configure.ac: remove enable flags for EGL and GBM Gallium state trackers

Acked-by: Kristian Høgsberg <krh@bitplanet.net>
Reviewed-by: Eric Anholt <eric@anholt.net>
Informally acked-by: Jose Fonseca
/external/mesa3d/src/gallium/Makefile.am
3867933ecbc34ed1f68d735282580ca1e4eedea1 02-Jul-2014 Christian König <christian.koenig@amd.com> st/va: skeleton VAAPI state tracker

This patch adds a skeleton VA-API state tracker,
which is filled with live in the subsequent patches.

v2: fixes in configure.ac and va state_tracker Makefile.am
v3: do not link against libva.
detect libva version, and correctly set driver entrypoint name.
rebase(cleanup) targets/va/Makefile.am
v4: cleanup va version auto detection
add back targets/va/va.sym

Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
/external/mesa3d/src/gallium/Makefile.am
29c4ae0ebf36bebb38d0b506554540632819481c 21-Sep-2014 Emil Velikov <emil.l.velikov@gmail.com> configure: remove NEED_{SOFT,LLVM}PIPE_DRIVER variables

The respective HAVE_{SOFT,LLVM}PIPE are already descriptive
enough. Additionally the svga modules does not really use either
one, but the auxiliary draw & gallivm modules.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
3d8b53ffb4ce4feff8326a62354386c9bc0bca27 09-Sep-2014 Emil Velikov <emil.l.velikov@gmail.com> automake: remove obsolete NEED_GALLIUM_LOADER

Superseded by HAVE_LOADER_GALLIUM. The latter has a *DRM* brethren
making the whose easier on which one to keep.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
290328970638be54a9fbbd07a3067d6a089122ed 05-Sep-2014 Emil Velikov <emil.l.velikov@gmail.com> configure: kill off NEED_WINSYS_WRAPPER

Just drop the conditional and simplify our build. This means that
it'll build every time, but it does not require any dependencies nor
does it take that long to compile 200 lines of boilerplate code.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
525c48a3164b1fe77d65fdc944bc4c5050b595ef 29-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> gallium/tools: pick up the tools for distribution

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
c6948da66624cbda6dc180127fd9fa3832abc2ae 29-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> gallium/tests: ship all the tests in the release tarball

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
cf0c4d6d63d58eb2cbf590768bc2dd637f6ef7bf 29-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> gallium: ship state-tracker/README in the release tarball

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
c553b6e2df4ac1675f084e08f263ad825aa72ec5 28-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> gallium: ship the non-automaked state-trackers & targets

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
5b8900ded3988084c5bf005c0780efbec912d755 28-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> hgl: trivial bits

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
015792fb028de32293d3165e5f61b4569858d8eb 18-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> winsys/sw: add the final files to the tarball

Add the final remaining files into the tarball (make dist), namely:
- SConscripts
- Non-autotooled winsys' - android, gdi and hgl.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
b75e0d7e25c51f944347cd59ccfaf26bf917258f 21-Jul-2014 Emil Velikov <emil.l.velikov@gmail.com> automake: handle gallium SUBDIRs in gallium/Makefile

Considering the way we've been consolidating things it makes
sense to add the final two (aux and tests) in here.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
7af25d17a5956106c5319ba8cd7d947fbab76f6b 21-Jul-2014 Emil Velikov <emil.l.velikov@gmail.com> automake: compact gallium/target/Makefile into gallium/Makefile

Yet another makefile less to worry about.

v2: Add state_trackers and targets on a single SUBDIRS line.
Requested by Matt.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
eeb56b6b438e5acc5e90d0981fb455ba90b1e01a 13-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> automake: merge gallium/state_trackers/Makefile into gallium/Makefile

One makefile less, with the potential of further compacting the
automake build.

v2: Rebase on top of vc4 changes.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
fd7da27a43182169e6306d9df39e7e9498e38d28 13-Aug-2014 Emil Velikov <emil.l.velikov@gmail.com> automake: compact gallium/drivers and gallium/winsys makefiles

Rather than having two separate almost empty and identical makefiles,
compact them thus improving the configure and build time.
Additionally this makes the automake build symmetrical to the scons
and android one.

v2: Rebase on top of vc4, compact drivers + winsys on a single line.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
/external/mesa3d/src/gallium/Makefile.am
70531b4a25111821935c33962abfb5b526c5a817 19-Jan-2013 Matt Turner <mattst88@gmail.com> build: Remove GALLIUM_DIRS

It's always constant anyway.

Tested-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-and-Tested-by: Andreas Boll <andreas.boll.dev@gmail.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
/external/mesa3d/src/gallium/Makefile.am
2fb0f770a4bfbcb1d2c4787d286812ec6133d994 11-Jun-2012 Eric Anholt <eric@anholt.net> automake: Convert src/gallium/Makefile to automake.
/external/mesa3d/src/gallium/Makefile.am