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

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

Issue 2335193002: [wasm] Move the wasm-module-runner from test/cctest to test/common (Closed)
Patch Set: Files should be compiled exactly once in a GN build. Created 4 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
« no previous file with comments | « test/cctest/BUILD.gn ('k') | test/cctest/wasm/test-run-wasm-module.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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 'wasm/test-run-wasm-asmjs.cc', 191 'wasm/test-run-wasm-asmjs.cc',
192 'wasm/test-run-wasm-interpreter.cc', 192 'wasm/test-run-wasm-interpreter.cc',
193 'wasm/test-run-wasm-js.cc', 193 'wasm/test-run-wasm-js.cc',
194 'wasm/test-run-wasm-module.cc', 194 'wasm/test-run-wasm-module.cc',
195 'wasm/test-run-wasm-relocation.cc', 195 'wasm/test-run-wasm-relocation.cc',
196 'wasm/test-signatures.h', 196 'wasm/test-signatures.h',
197 'wasm/test-wasm-function-name-table.cc', 197 'wasm/test-wasm-function-name-table.cc',
198 'wasm/test-wasm-stack.cc', 198 'wasm/test-wasm-stack.cc',
199 'wasm/test-wasm-trap-position.cc', 199 'wasm/test-wasm-trap-position.cc',
200 'wasm/wasm-run-utils.h', 200 'wasm/wasm-run-utils.h',
201 'wasm/wasm-module-runner.cc',
202 'wasm/wasm-module-runner.h',
203 ], 201 ],
204 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ### 202 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ###
205 'test-assembler-ia32.cc', 203 'test-assembler-ia32.cc',
206 'test-code-stubs.cc', 204 'test-code-stubs.cc',
207 'test-code-stubs-ia32.cc', 205 'test-code-stubs-ia32.cc',
208 'test-disasm-ia32.cc', 206 'test-disasm-ia32.cc',
209 'test-macro-assembler-ia32.cc', 207 'test-macro-assembler-ia32.cc',
210 'test-log-stack-tracer.cc', 208 'test-log-stack-tracer.cc',
211 'test-run-wasm-relocation-ia32.cc' 209 'test-run-wasm-relocation-ia32.cc'
212 ], 210 ],
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'target_name': 'cctest', 291 'target_name': 'cctest',
294 'type': 'executable', 292 'type': 'executable',
295 'dependencies': [ 293 'dependencies': [
296 'resources', 294 'resources',
297 '../../src/v8.gyp:v8_libplatform', 295 '../../src/v8.gyp:v8_libplatform',
298 ], 296 ],
299 'include_dirs': [ 297 'include_dirs': [
300 '../..', 298 '../..',
301 ], 299 ],
302 'sources': [ 300 'sources': [
301 '../common/wasm/wasm-module-runner.cc',
302 '../common/wasm/wasm-module-runner.h',
303 '<@(cctest_sources)', 303 '<@(cctest_sources)',
304 '<(generated_file)', 304 '<(generated_file)',
305 ], 305 ],
306 'conditions': [ 306 'conditions': [
307 ['v8_target_arch=="ia32"', { 307 ['v8_target_arch=="ia32"', {
308 'sources': [ 308 'sources': [
309 '<@(cctest_sources_ia32)', 309 '<@(cctest_sources_ia32)',
310 ], 310 ],
311 }], 311 }],
312 ['v8_target_arch=="x64"', { 312 ['v8_target_arch=="x64"', {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 '../../gypfiles/isolate.gypi', 489 '../../gypfiles/isolate.gypi',
490 ], 490 ],
491 'sources': [ 491 'sources': [
492 'cctest.isolate', 492 'cctest.isolate',
493 ], 493 ],
494 }, 494 },
495 ], 495 ],
496 }], 496 }],
497 ], 497 ],
498 } 498 }
OLDNEW
« no previous file with comments | « test/cctest/BUILD.gn ('k') | test/cctest/wasm/test-run-wasm-module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698