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

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

Issue 2523893003: Reland of [ignition/turbo] Perform liveness analysis on the bytecodes (Closed)
Patch Set: Export handler table for tests Created 4 years 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 import("../../gni/v8.gni") 5 import("../../gni/v8.gni")
6 6
7 v8_executable("unittests") { 7 v8_executable("unittests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 13 matching lines...) Expand all
24 "base/platform/platform-unittest.cc", 24 "base/platform/platform-unittest.cc",
25 "base/platform/semaphore-unittest.cc", 25 "base/platform/semaphore-unittest.cc",
26 "base/platform/time-unittest.cc", 26 "base/platform/time-unittest.cc",
27 "base/sys-info-unittest.cc", 27 "base/sys-info-unittest.cc",
28 "base/utils/random-number-generator-unittest.cc", 28 "base/utils/random-number-generator-unittest.cc",
29 "cancelable-tasks-unittest.cc", 29 "cancelable-tasks-unittest.cc",
30 "char-predicates-unittest.cc", 30 "char-predicates-unittest.cc",
31 "compiler-dispatcher/compiler-dispatcher-job-unittest.cc", 31 "compiler-dispatcher/compiler-dispatcher-job-unittest.cc",
32 "compiler-dispatcher/compiler-dispatcher-tracer-unittest.cc", 32 "compiler-dispatcher/compiler-dispatcher-tracer-unittest.cc",
33 "compiler/branch-elimination-unittest.cc", 33 "compiler/branch-elimination-unittest.cc",
34 "compiler/bytecode-analysis-unittest.cc",
34 "compiler/checkpoint-elimination-unittest.cc", 35 "compiler/checkpoint-elimination-unittest.cc",
35 "compiler/common-operator-reducer-unittest.cc", 36 "compiler/common-operator-reducer-unittest.cc",
36 "compiler/common-operator-unittest.cc", 37 "compiler/common-operator-unittest.cc",
37 "compiler/compiler-test-utils.h", 38 "compiler/compiler-test-utils.h",
38 "compiler/control-equivalence-unittest.cc", 39 "compiler/control-equivalence-unittest.cc",
39 "compiler/control-flow-optimizer-unittest.cc", 40 "compiler/control-flow-optimizer-unittest.cc",
40 "compiler/dead-code-elimination-unittest.cc", 41 "compiler/dead-code-elimination-unittest.cc",
41 "compiler/diamond-unittest.cc", 42 "compiler/diamond-unittest.cc",
42 "compiler/effect-control-linearizer-unittest.cc", 43 "compiler/effect-control-linearizer-unittest.cc",
43 "compiler/escape-analysis-unittest.cc", 44 "compiler/escape-analysis-unittest.cc",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 deps += [ "//third_party/icu" ] 179 deps += [ "//third_party/icu" ]
179 } 180 }
180 181
181 if (is_win) { 182 if (is_win) {
182 # This warning is benignly triggered by the U16 and U32 macros in 183 # This warning is benignly triggered by the U16 and U32 macros in
183 # bytecode-utils.h. 184 # bytecode-utils.h.
184 # C4309: 'static_cast': truncation of constant value 185 # C4309: 'static_cast': truncation of constant value
185 cflags = [ "/wd4309" ] 186 cflags = [ "/wd4309" ]
186 } 187 }
187 } 188 }
OLDNEW
« no previous file with comments | « test/mjsunit/modules-debug-scopes1.js ('k') | test/unittests/compiler/bytecode-analysis-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698