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

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

Issue 1516753007: 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: back to the start state 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',
113 ], 117 ],
114 'conditions': [ 118 'conditions': [
115 ['v8_target_arch=="arm"', { 119 ['v8_target_arch=="arm"', {
116 'sources': [ ### gcmole(arch:arm) ### 120 'sources': [ ### gcmole(arch:arm) ###
117 'compiler/arm/instruction-selector-arm-unittest.cc', 121 'compiler/arm/instruction-selector-arm-unittest.cc',
118 ], 122 ],
119 }], 123 }],
120 ['v8_target_arch=="arm64"', { 124 ['v8_target_arch=="arm64"', {
121 'sources': [ ### gcmole(arch:arm64) ### 125 'sources': [ ### gcmole(arch:arm64) ###
122 'compiler/arm64/instruction-selector-arm64-unittest.cc', 126 'compiler/arm64/instruction-selector-arm64-unittest.cc',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 # that show up because we use -std=gnu++0x instead of -std=c++11. 166 # that show up because we use -std=gnu++0x instead of -std=c++11.
163 'cflags!': [ 167 'cflags!': [
164 '-pedantic', 168 '-pedantic',
165 ], 169 ],
166 'direct_dependent_settings': { 170 'direct_dependent_settings': {
167 'cflags!': [ 171 'cflags!': [
168 '-pedantic', 172 '-pedantic',
169 ], 173 ],
170 }, 174 },
171 }], 175 }],
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 }],
180 ], 176 ],
181 }, 177 },
182 ], 178 ],
183 'conditions': [ 179 'conditions': [
184 ['test_isolation_mode != "noop"', { 180 ['test_isolation_mode != "noop"', {
185 'targets': [ 181 'targets': [
186 { 182 {
187 'target_name': 'unittests_run', 183 'target_name': 'unittests_run',
188 'type': 'none', 184 'type': 'none',
189 'dependencies': [ 185 'dependencies': [
190 'unittests', 186 'unittests',
191 ], 187 ],
192 'includes': [ 188 'includes': [
193 '../../build/isolate.gypi', 189 '../../build/isolate.gypi',
194 ], 190 ],
195 'sources': [ 191 'sources': [
196 'unittests.isolate', 192 'unittests.isolate',
197 ], 193 ],
198 }, 194 },
199 ], 195 ],
200 }], 196 }],
201 ], 197 ],
202 } 198 }
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