From 40f16dde2286a0d319f5422b5d13dcd793c70181 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Thu, 30 Jul 2020 18:44:04 +0000 Subject: [PATCH] Change the default for BUILD.gn to build all the modules BUG=tint:198 Change-Id: I88684c14506785545968c3366a5f3e485c829d97 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/26121 Reviewed-by: dan sinclair --- tint_overrides_with_defaults.gni | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tint_overrides_with_defaults.gni b/tint_overrides_with_defaults.gni index 22e698b75a..ceb80c010f 100644 --- a/tint_overrides_with_defaults.gni +++ b/tint_overrides_with_defaults.gni @@ -39,31 +39,31 @@ declare_args() { # Build the SPIR-V input reader if (!defined(tint_build_spv_reader)) { - tint_build_spv_reader = false + tint_build_spv_reader = true } # Build the SPIR-V output writer if (!defined(tint_build_spv_writer)) { - tint_build_spv_writer = false + tint_build_spv_writer = true } # Build the WGSL input reader if (!defined(tint_build_wgsl_reader)) { - tint_build_wgsl_reader = false + tint_build_wgsl_reader = true } # Build the WGSL output writer if (!defined(tint_build_wgsl_writer)) { - tint_build_wgsl_writer = false + tint_build_wgsl_writer = true } # Build the MSL output writer if (!defined(tint_build_msl_writer)) { - tint_build_msl_writer = false + tint_build_msl_writer = true } # Build the HLSL output writer if (!defined(tint_build_hlsl_writer)) { - tint_build_hlsl_writer = false + tint_build_hlsl_writer = true } }