Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(795)

Unified Diff: test/unittests/BUILD.gn

Issue 2045703007: V8. ASM-2-WASM. New type system. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
+ ]
}
}
}

Powered by Google App Engine
This is Rietveld 408576698