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

Side by Side Diff: test/unittests/BUILD.gn

Issue 2095893002: Use source position table for unoptimized code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix gc mole Created 4 years, 5 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 v8_executable("unittests") { 9 v8_executable("unittests") {
10 testonly = true 10 testonly = true
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 "interpreter/bytecode-array-writer-unittest.cc", 93 "interpreter/bytecode-array-writer-unittest.cc",
94 "interpreter/bytecode-dead-code-optimizer-unittest.cc", 94 "interpreter/bytecode-dead-code-optimizer-unittest.cc",
95 "interpreter/bytecode-peephole-optimizer-unittest.cc", 95 "interpreter/bytecode-peephole-optimizer-unittest.cc",
96 "interpreter/bytecode-pipeline-unittest.cc", 96 "interpreter/bytecode-pipeline-unittest.cc",
97 "interpreter/bytecode-register-allocator-unittest.cc", 97 "interpreter/bytecode-register-allocator-unittest.cc",
98 "interpreter/bytecode-register-optimizer-unittest.cc", 98 "interpreter/bytecode-register-optimizer-unittest.cc",
99 "interpreter/bytecodes-unittest.cc", 99 "interpreter/bytecodes-unittest.cc",
100 "interpreter/constant-array-builder-unittest.cc", 100 "interpreter/constant-array-builder-unittest.cc",
101 "interpreter/interpreter-assembler-unittest.cc", 101 "interpreter/interpreter-assembler-unittest.cc",
102 "interpreter/interpreter-assembler-unittest.h", 102 "interpreter/interpreter-assembler-unittest.h",
103 "interpreter/source-position-table-unittest.cc",
104 "libplatform/default-platform-unittest.cc", 103 "libplatform/default-platform-unittest.cc",
105 "libplatform/task-queue-unittest.cc", 104 "libplatform/task-queue-unittest.cc",
106 "libplatform/worker-thread-unittest.cc", 105 "libplatform/worker-thread-unittest.cc",
107 "locked-queue-unittest.cc", 106 "locked-queue-unittest.cc",
108 "register-configuration-unittest.cc", 107 "register-configuration-unittest.cc",
109 "run-all-unittests.cc", 108 "run-all-unittests.cc",
109 "source-position-table-unittest.cc",
110 "test-utils.cc", 110 "test-utils.cc",
111 "test-utils.h", 111 "test-utils.h",
112 "wasm/asm-types-unittest.cc", 112 "wasm/asm-types-unittest.cc",
113 "wasm/ast-decoder-unittest.cc", 113 "wasm/ast-decoder-unittest.cc",
114 "wasm/control-transfer-unittest.cc", 114 "wasm/control-transfer-unittest.cc",
115 "wasm/decoder-unittest.cc", 115 "wasm/decoder-unittest.cc",
116 "wasm/encoder-unittest.cc", 116 "wasm/encoder-unittest.cc",
117 "wasm/leb-helper-unittest.cc", 117 "wasm/leb-helper-unittest.cc",
118 "wasm/loop-assignment-analysis-unittest.cc", 118 "wasm/loop-assignment-analysis-unittest.cc",
119 "wasm/module-decoder-unittest.cc", 119 "wasm/module-decoder-unittest.cc",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 173
174 # Suppress warnings about importing locally defined symbols. 174 # Suppress warnings about importing locally defined symbols.
175 if (is_component_build) { 175 if (is_component_build) {
176 ldflags = [ 176 ldflags = [
177 "/ignore:4049", 177 "/ignore:4049",
178 "/ignore:4217", 178 "/ignore:4217",
179 ] 179 ]
180 } 180 }
181 } 181 }
182 } 182 }
OLDNEW
« no previous file with comments | « test/cctest/interpreter/source-position-matcher.cc ('k') | test/unittests/interpreter/bytecode-array-writer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698