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

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

Issue 1531073003: Revert of Remove wasm compile time option and enable wasm behind a runtime flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'heap/bitmap-unittest.cc', 103 'heap/bitmap-unittest.cc',
104 'heap/gc-idle-time-handler-unittest.cc', 104 'heap/gc-idle-time-handler-unittest.cc',
105 'heap/memory-reducer-unittest.cc', 105 'heap/memory-reducer-unittest.cc',
106 'heap/heap-unittest.cc', 106 'heap/heap-unittest.cc',
107 'heap/scavenge-job-unittest.cc', 107 'heap/scavenge-job-unittest.cc',
108 'locked-queue-unittest.cc', 108 'locked-queue-unittest.cc',
109 'run-all-unittests.cc', 109 'run-all-unittests.cc',
110 'runtime/runtime-interpreter-unittest.cc', 110 'runtime/runtime-interpreter-unittest.cc',
111 'test-utils.h', 111 'test-utils.h',
112 'test-utils.cc', 112 'test-utils.cc',
113 'wasm/ast-decoder-unittest.cc',
114 'wasm/encoder-unittest.cc',
115 'wasm/module-decoder-unittest.cc',
116 'wasm/wasm-macro-gen-unittest.cc',
117 ], 113 ],
118 'conditions': [ 114 'conditions': [
119 ['v8_target_arch=="arm"', { 115 ['v8_target_arch=="arm"', {
120 'sources': [ ### gcmole(arch:arm) ### 116 'sources': [ ### gcmole(arch:arm) ###
121 'compiler/arm/instruction-selector-arm-unittest.cc', 117 'compiler/arm/instruction-selector-arm-unittest.cc',
122 ], 118 ],
123 }], 119 }],
124 ['v8_target_arch=="arm64"', { 120 ['v8_target_arch=="arm64"', {
125 'sources': [ ### gcmole(arch:arm64) ### 121 'sources': [ ### gcmole(arch:arm64) ###
126 'compiler/arm64/instruction-selector-arm64-unittest.cc', 122 'compiler/arm64/instruction-selector-arm64-unittest.cc',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 # that show up because we use -std=gnu++0x instead of -std=c++11. 162 # that show up because we use -std=gnu++0x instead of -std=c++11.
167 'cflags!': [ 163 'cflags!': [
168 '-pedantic', 164 '-pedantic',
169 ], 165 ],
170 'direct_dependent_settings': { 166 'direct_dependent_settings': {
171 'cflags!': [ 167 'cflags!': [
172 '-pedantic', 168 '-pedantic',
173 ], 169 ],
174 }, 170 },
175 }], 171 }],
172 ['v8_wasm!=0', {
173 'sources': [
174 'wasm/ast-decoder-unittest.cc',
175 'wasm/encoder-unittest.cc',
176 'wasm/module-decoder-unittest.cc',
177 'wasm/wasm-macro-gen-unittest.cc',
178 ],
179 }],
176 ], 180 ],
177 }, 181 },
178 ], 182 ],
179 'conditions': [ 183 'conditions': [
180 ['test_isolation_mode != "noop"', { 184 ['test_isolation_mode != "noop"', {
181 'targets': [ 185 'targets': [
182 { 186 {
183 'target_name': 'unittests_run', 187 'target_name': 'unittests_run',
184 'type': 'none', 188 'type': 'none',
185 'dependencies': [ 189 'dependencies': [
186 'unittests', 190 'unittests',
187 ], 191 ],
188 'includes': [ 192 'includes': [
189 '../../build/isolate.gypi', 193 '../../build/isolate.gypi',
190 ], 194 ],
191 'sources': [ 195 'sources': [
192 'unittests.isolate', 196 'unittests.isolate',
193 ], 197 ],
194 }, 198 },
195 ], 199 ],
196 }], 200 }],
197 ], 201 ],
198 } 202 }
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698