diff --git a/fuzzers/BUILD.gn b/fuzzers/BUILD.gn index cfb23f2c45..cb5646db5b 100644 --- a/fuzzers/BUILD.gn +++ b/fuzzers/BUILD.gn @@ -30,7 +30,10 @@ if (build_with_chromium) { "${tint_root_dir}/src:tint_common_config", ] - public_deps = [ "${tint_root_dir}/src:libtint" ] + public_deps = [ + "${tint_root_dir}/src:libtint", + "${tint_spirv_tools_dir}/:spvtools_val", + ] sources = [ "tint_common_fuzzer.cc", diff --git a/test/BUILD.gn b/test/BUILD.gn index 4dd045315f..6b4a1598cd 100644 --- a/test/BUILD.gn +++ b/test/BUILD.gn @@ -126,6 +126,8 @@ source_set("tint_test_helpers") { sources += [ "../src/utils/command_other.cc" ] sources += [ "../src/utils/tmpfile_other.cc" ] } + + configs += [ ":tint_unittests_config" ] } template("tint_unittests_source_set") {