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

Side by Side Diff: test/unittests/unittests.gyp

Issue 1291693004: [Interpreter] Bytecode graph builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More fixes for bots (tests w/ ASAN and tests w/ slow asserts enabled). Created 5 years, 3 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 2014 the V8 project authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 'v8_code': 1, 7 'v8_code': 1,
8 }, 8 },
9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
10 'targets': [ 10 'targets': [
(...skipping 25 matching lines...) Expand all
36 'base/logging-unittest.cc', 36 'base/logging-unittest.cc',
37 'base/iterator-unittest.cc', 37 'base/iterator-unittest.cc',
38 'base/platform/condition-variable-unittest.cc', 38 'base/platform/condition-variable-unittest.cc',
39 'base/platform/mutex-unittest.cc', 39 'base/platform/mutex-unittest.cc',
40 'base/platform/platform-unittest.cc', 40 'base/platform/platform-unittest.cc',
41 'base/platform/semaphore-unittest.cc', 41 'base/platform/semaphore-unittest.cc',
42 'base/platform/time-unittest.cc', 42 'base/platform/time-unittest.cc',
43 'base/sys-info-unittest.cc', 43 'base/sys-info-unittest.cc',
44 'base/utils/random-number-generator-unittest.cc', 44 'base/utils/random-number-generator-unittest.cc',
45 'char-predicates-unittest.cc', 45 'char-predicates-unittest.cc',
46 'compiler/bytecode-graph-builder-unittest.cc',
46 'compiler/change-lowering-unittest.cc', 47 'compiler/change-lowering-unittest.cc',
47 'compiler/coalesced-live-ranges-unittest.cc', 48 'compiler/coalesced-live-ranges-unittest.cc',
48 'compiler/common-operator-reducer-unittest.cc', 49 'compiler/common-operator-reducer-unittest.cc',
49 'compiler/common-operator-unittest.cc', 50 'compiler/common-operator-unittest.cc',
50 'compiler/compiler-test-utils.h', 51 'compiler/compiler-test-utils.h',
51 'compiler/control-equivalence-unittest.cc', 52 'compiler/control-equivalence-unittest.cc',
52 'compiler/control-flow-optimizer-unittest.cc', 53 'compiler/control-flow-optimizer-unittest.cc',
53 'compiler/dead-code-elimination-unittest.cc', 54 'compiler/dead-code-elimination-unittest.cc',
54 'compiler/diamond-unittest.cc', 55 'compiler/diamond-unittest.cc',
55 'compiler/graph-reducer-unittest.cc', 56 'compiler/graph-reducer-unittest.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 'compiler/simplified-operator-reducer-unittest.cc', 92 'compiler/simplified-operator-reducer-unittest.cc',
92 'compiler/simplified-operator-unittest.cc', 93 'compiler/simplified-operator-unittest.cc',
93 'compiler/state-values-utils-unittest.cc', 94 'compiler/state-values-utils-unittest.cc',
94 'compiler/tail-call-optimization-unittest.cc', 95 'compiler/tail-call-optimization-unittest.cc',
95 'compiler/typer-unittest.cc', 96 'compiler/typer-unittest.cc',
96 'compiler/value-numbering-reducer-unittest.cc', 97 'compiler/value-numbering-reducer-unittest.cc',
97 'compiler/zone-pool-unittest.cc', 98 'compiler/zone-pool-unittest.cc',
98 'counters-unittest.cc', 99 'counters-unittest.cc',
99 'interpreter/bytecodes-unittest.cc', 100 'interpreter/bytecodes-unittest.cc',
100 'interpreter/bytecode-array-builder-unittest.cc', 101 'interpreter/bytecode-array-builder-unittest.cc',
102 'interpreter/bytecode-array-iterator-unittest.cc',
101 'libplatform/default-platform-unittest.cc', 103 'libplatform/default-platform-unittest.cc',
102 'libplatform/task-queue-unittest.cc', 104 'libplatform/task-queue-unittest.cc',
103 'libplatform/worker-thread-unittest.cc', 105 'libplatform/worker-thread-unittest.cc',
104 'heap/gc-idle-time-handler-unittest.cc', 106 'heap/gc-idle-time-handler-unittest.cc',
105 'heap/memory-reducer-unittest.cc', 107 'heap/memory-reducer-unittest.cc',
106 'heap/heap-unittest.cc', 108 'heap/heap-unittest.cc',
107 'run-all-unittests.cc', 109 'run-all-unittests.cc',
108 'test-utils.h', 110 'test-utils.h',
109 'test-utils.cc', 111 'test-utils.cc',
110 ], 112 ],
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 }], 170 }],
169 ['v8_wasm!=0', { 171 ['v8_wasm!=0', {
170 'dependencies': [ 172 'dependencies': [
171 '../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests' , 173 '../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests' ,
172 ], 174 ],
173 }], 175 }],
174 ], 176 ],
175 }, 177 },
176 ], 178 ],
177 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698