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

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: Addresses comments 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "interpreter/interpreter-assembler-unittest.cc", 99 "interpreter/interpreter-assembler-unittest.cc",
100 "interpreter/interpreter-assembler-unittest.h", 100 "interpreter/interpreter-assembler-unittest.h",
101 "interpreter/source-position-table-unittest.cc", 101 "interpreter/source-position-table-unittest.cc",
102 "libplatform/default-platform-unittest.cc", 102 "libplatform/default-platform-unittest.cc",
103 "libplatform/task-queue-unittest.cc", 103 "libplatform/task-queue-unittest.cc",
104 "libplatform/worker-thread-unittest.cc", 104 "libplatform/worker-thread-unittest.cc",
105 "locked-queue-unittest.cc", 105 "locked-queue-unittest.cc",
106 "run-all-unittests.cc", 106 "run-all-unittests.cc",
107 "test-utils.cc", 107 "test-utils.cc",
108 "test-utils.h", 108 "test-utils.h",
109 "wasm/asm-types-unittest.cc",
109 "wasm/ast-decoder-unittest.cc", 110 "wasm/ast-decoder-unittest.cc",
110 "wasm/control-transfer-unittest.cc", 111 "wasm/control-transfer-unittest.cc",
111 "wasm/decoder-unittest.cc", 112 "wasm/decoder-unittest.cc",
112 "wasm/encoder-unittest.cc", 113 "wasm/encoder-unittest.cc",
113 "wasm/leb-helper-unittest.cc", 114 "wasm/leb-helper-unittest.cc",
114 "wasm/loop-assignment-analysis-unittest.cc", 115 "wasm/loop-assignment-analysis-unittest.cc",
115 "wasm/module-decoder-unittest.cc", 116 "wasm/module-decoder-unittest.cc",
116 "wasm/switch-logic-unittest.cc", 117 "wasm/switch-logic-unittest.cc",
117 "wasm/wasm-macro-gen-unittest.cc", 118 "wasm/wasm-macro-gen-unittest.cc",
118 ] 119 ]
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 174
174 # Suppress warnings about importing locally defined symbols. 175 # Suppress warnings about importing locally defined symbols.
175 if (is_component_build) { 176 if (is_component_build) {
176 ldflags = [ 177 ldflags = [
177 "/ignore:4049", 178 "/ignore:4049",
178 "/ignore:4217", 179 "/ignore:4217",
179 ] 180 ]
180 } 181 }
181 } 182 }
182 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698