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

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

Issue 1838973002: optimized switch implementation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'heap/slot-set-unittest.cc', 113 'heap/slot-set-unittest.cc',
114 'locked-queue-unittest.cc', 114 'locked-queue-unittest.cc',
115 'run-all-unittests.cc', 115 'run-all-unittests.cc',
116 'test-utils.h', 116 'test-utils.h',
117 'test-utils.cc', 117 'test-utils.cc',
118 'wasm/ast-decoder-unittest.cc', 118 'wasm/ast-decoder-unittest.cc',
119 'wasm/decoder-unittest.cc', 119 'wasm/decoder-unittest.cc',
120 'wasm/encoder-unittest.cc', 120 'wasm/encoder-unittest.cc',
121 'wasm/loop-assignment-analysis-unittest.cc', 121 'wasm/loop-assignment-analysis-unittest.cc',
122 'wasm/module-decoder-unittest.cc', 122 'wasm/module-decoder-unittest.cc',
123 'wasm/switch-logic-unittest.cc',
123 'wasm/wasm-macro-gen-unittest.cc', 124 'wasm/wasm-macro-gen-unittest.cc',
124 ], 125 ],
125 'conditions': [ 126 'conditions': [
126 ['v8_target_arch=="arm"', { 127 ['v8_target_arch=="arm"', {
127 'sources': [ ### gcmole(arch:arm) ### 128 'sources': [ ### gcmole(arch:arm) ###
128 'compiler/arm/instruction-selector-arm-unittest.cc', 129 'compiler/arm/instruction-selector-arm-unittest.cc',
129 ], 130 ],
130 }], 131 }],
131 ['v8_target_arch=="arm64"', { 132 ['v8_target_arch=="arm64"', {
132 'sources': [ ### gcmole(arch:arm64) ### 133 'sources': [ ### gcmole(arch:arm64) ###
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 '../../build/isolate.gypi', 212 '../../build/isolate.gypi',
212 ], 213 ],
213 'sources': [ 214 'sources': [
214 'unittests.isolate', 215 'unittests.isolate',
215 ], 216 ],
216 }, 217 },
217 ], 218 ],
218 }], 219 }],
219 ], 220 ],
220 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698