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

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

Issue 1504713014: Initial import of v8-native WASM. (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/wasm/wasm-object-api.js ('k') | test/unittests/wasm/ast-decoder-unittest.cc » ('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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'cflags!': [ 163 'cflags!': [
164 '-pedantic', 164 '-pedantic',
165 ], 165 ],
166 'direct_dependent_settings': { 166 'direct_dependent_settings': {
167 'cflags!': [ 167 'cflags!': [
168 '-pedantic', 168 '-pedantic',
169 ], 169 ],
170 }, 170 },
171 }], 171 }],
172 ['v8_wasm!=0', { 172 ['v8_wasm!=0', {
173 'dependencies': [ 173 'sources': [
174 '../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests' , 174 'wasm/ast-decoder-unittest.cc',
175 'wasm/encoder-unittest.cc',
176 'wasm/module-decoder-unittest.cc',
177 'wasm/wasm-macro-gen-unittest.cc',
175 ], 178 ],
176 }], 179 }],
177 ], 180 ],
178 }, 181 },
179 ], 182 ],
180 'conditions': [ 183 'conditions': [
181 ['test_isolation_mode != "noop"', { 184 ['test_isolation_mode != "noop"', {
182 'targets': [ 185 'targets': [
183 { 186 {
184 'target_name': 'unittests_run', 187 'target_name': 'unittests_run',
185 'type': 'none', 188 'type': 'none',
186 'dependencies': [ 189 'dependencies': [
187 'unittests', 190 'unittests',
188 ], 191 ],
189 'includes': [ 192 'includes': [
190 '../../build/isolate.gypi', 193 '../../build/isolate.gypi',
191 ], 194 ],
192 'sources': [ 195 'sources': [
193 'unittests.isolate', 196 'unittests.isolate',
194 ], 197 ],
195 }, 198 },
196 ], 199 ],
197 }], 200 }],
198 ], 201 ],
199 } 202 }
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/wasm-object-api.js ('k') | test/unittests/wasm/ast-decoder-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698