X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson_options.txt;h=a0cf4abca9282cb34823b701711faa5c7c190e37;hb=615f1c8990db4499e65844d0f50dcdd43de65e37;hp=464b99286ee446d813aab2e5e67857e49cdbcf1e;hpb=138c003d22739b0d1e6860ed398dd511a44cde04;p=mesa.git diff --git a/meson_options.txt b/meson_options.txt index 464b99286ee..a0cf4abca92 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -23,11 +23,18 @@ option( type : 'array', value : ['auto'], choices : [ - '', 'auto', 'x11', 'wayland', 'drm', 'surfaceless', 'haiku', 'android', + 'auto', 'x11', 'wayland', 'drm', 'surfaceless', 'haiku', 'android', 'windows', ], description : 'window systems to support. If this is set to `auto`, all platforms applicable will be enabled.' ) +option( + 'android-stub', + type : 'boolean', + value : false, + description : 'Build against android-stub', +) + option( 'dri3', type : 'combo', @@ -39,7 +46,7 @@ option( 'dri-drivers', type : 'array', value : ['auto'], - choices : ['', 'auto', 'i915', 'i965', 'r100', 'r200', 'nouveau', 'swrast'], + choices : ['auto', 'i915', 'i965', 'r100', 'r200', 'nouveau', 'swrast'], description : 'List of dri drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' ) option( @@ -59,7 +66,7 @@ option( type : 'array', value : ['auto'], choices : [ - '', 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', + 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno', 'swrast', 'v3d', 'vc4', 'etnaviv', 'tegra', 'i915', 'svga', 'virgl', 'swr', 'panfrost', 'iris', 'lima', 'zink' ], @@ -159,7 +166,7 @@ option( 'vulkan-drivers', type : 'array', value : ['auto'], - choices : ['', 'auto', 'amd', 'freedreno', 'intel'], + choices : ['auto', 'amd', 'freedreno', 'intel', 'swrast'], description : 'List of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built' ) option( @@ -286,7 +293,13 @@ option( 'build-tests', type : 'boolean', value : false, - description : 'Build unit tests. Currently this will build *all* unit tests, which may build more than expected.' + description : 'Build unit tests. Currently this will build *all* unit tests except the ACO tests, which may build more than expected.' +) +option( + 'build-aco-tests', + type : 'boolean', + value : false, + description : 'Build ACO tests. These require RADV and glslang but not an AMD GPU.' ) option( 'install-intel-gpu-tests',