From 2bfd34c518134dd656f4f23f3c6c8acb1eeda507 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 10 Nov 2017 09:17:08 -0800 Subject: meson: don't use build_by_default for specific gallium drivers Using build_by_default : false is convenient for dependencies that can be pulled in by various diverse components of the build system, the gallium hardware/software drivers and state trackers do not fit that description. Instead, these should be guarded using the variable that tracks whether that driver should be enabled. This leaves a few helper libraries: trace, rbug, etc, and the generic winsys bits as `build_by_default : false` because there are a large number of gallium components that pull them in. v2: - remove build_by_default from winsys convenience libs as well. v3: - Always put drivers before winsys for consistency Signed-off-by: Dylan Baker Tested-by: Lionel Landwerlin (v1) Reviewed-by: Eric Anholt --- src/gallium/winsys/amdgpu/drm/meson.build | 1 - 1 file changed, 1 deletion(-) (limited to 'src/gallium/winsys/amdgpu') diff --git a/src/gallium/winsys/amdgpu/drm/meson.build b/src/gallium/winsys/amdgpu/drm/meson.build index a81750e842a..8b6f69b2bdd 100644 --- a/src/gallium/winsys/amdgpu/drm/meson.build +++ b/src/gallium/winsys/amdgpu/drm/meson.build @@ -32,5 +32,4 @@ libamdgpuwinsys = static_library( cpp_args : [cpp_vis_args], link_with : libamdgpu_addrlib, dependencies : dep_libdrm_amdgpu, - build_by_default : false, ) -- cgit v1.2.3