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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The V8 project authors. All rights reserved. 1 # Copyright 2016 The V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Please keep this file in sync with unittests.gyp. 5 # Please keep this file in sync with unittests.gyp.
6 6
7 import("../../gni/v8.gni") 7 import("../../gni/v8.gni")
8 8
9 executable("unittests") { 9 executable("unittests") {
10 testonly = true 10 testonly = true
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "interpreter/interpreter-assembler-unittest.cc", 100 "interpreter/interpreter-assembler-unittest.cc",
101 "interpreter/interpreter-assembler-unittest.h", 101 "interpreter/interpreter-assembler-unittest.h",
102 "interpreter/source-position-table-unittest.cc", 102 "interpreter/source-position-table-unittest.cc",
103 "libplatform/default-platform-unittest.cc", 103 "libplatform/default-platform-unittest.cc",
104 "libplatform/task-queue-unittest.cc", 104 "libplatform/task-queue-unittest.cc",
105 "libplatform/worker-thread-unittest.cc", 105 "libplatform/worker-thread-unittest.cc",
106 "locked-queue-unittest.cc", 106 "locked-queue-unittest.cc",
107 "run-all-unittests.cc", 107 "run-all-unittests.cc",
108 "test-utils.cc", 108 "test-utils.cc",
109 "test-utils.h", 109 "test-utils.h",
110 "wasm/asm-types-unittest.cc",
110 "wasm/ast-decoder-unittest.cc", 111 "wasm/ast-decoder-unittest.cc",
111 "wasm/control-transfer-unittest.cc", 112 "wasm/control-transfer-unittest.cc",
112 "wasm/decoder-unittest.cc", 113 "wasm/decoder-unittest.cc",
113 "wasm/encoder-unittest.cc", 114 "wasm/encoder-unittest.cc",
114 "wasm/leb-helper-unittest.cc", 115 "wasm/leb-helper-unittest.cc",
115 "wasm/loop-assignment-analysis-unittest.cc", 116 "wasm/loop-assignment-analysis-unittest.cc",
116 "wasm/module-decoder-unittest.cc", 117 "wasm/module-decoder-unittest.cc",
117 "wasm/switch-logic-unittest.cc", 118 "wasm/switch-logic-unittest.cc",
118 "wasm/wasm-macro-gen-unittest.cc", 119 "wasm/wasm-macro-gen-unittest.cc",
119 ] 120 ]
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 } 168 }
168 169
169 if (is_win) { 170 if (is_win) {
170 # This warning is benignly triggered by the U16 and U32 macros in 171 # This warning is benignly triggered by the U16 and U32 macros in
171 # bytecode-utils.h. 172 # bytecode-utils.h.
172 # C4309: 'static_cast': truncation of constant value 173 # C4309: 'static_cast': truncation of constant value
173 cflags = [ "/wd4309" ] 174 cflags = [ "/wd4309" ]
174 175
175 # Suppress warnings about importing locally defined symbols. 176 # Suppress warnings about importing locally defined symbols.
176 if (is_component_build) { 177 if (is_component_build) {
177 ldflags = [ "/ignore:4049", "/ignore:4217" ] 178 ldflags = [
179 "/ignore:4049",
180 "/ignore:4217",
181 ]
178 } 182 }
179 } 183 }
180 } 184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698