| Index: test/unittests/BUILD.gn
|
| diff --git a/test/unittests/BUILD.gn b/test/unittests/BUILD.gn
|
| index 78720d095b8bc3dece0e306b006b0b5c0a695d64..39b2992294fe1a1e9a0d13b4c644f21da6162b09 100644
|
| --- a/test/unittests/BUILD.gn
|
| +++ b/test/unittests/BUILD.gn
|
| @@ -107,6 +107,7 @@ executable("unittests") {
|
| "run-all-unittests.cc",
|
| "test-utils.cc",
|
| "test-utils.h",
|
| + "wasm/asm-types-unittest.cc",
|
| "wasm/ast-decoder-unittest.cc",
|
| "wasm/control-transfer-unittest.cc",
|
| "wasm/decoder-unittest.cc",
|
| @@ -174,7 +175,10 @@ executable("unittests") {
|
|
|
| # Suppress warnings about importing locally defined symbols.
|
| if (is_component_build) {
|
| - ldflags = [ "/ignore:4049", "/ignore:4217" ]
|
| + ldflags = [
|
| + "/ignore:4049",
|
| + "/ignore:4217",
|
| + ]
|
| }
|
| }
|
| }
|
|
|