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

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

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback, rebase and "git cl format" Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « test/cctest/cctest.h ('k') | test/cctest/cctest.status » ('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 26 matching lines...) Expand all
37 'type': 'executable', 37 'type': 'executable',
38 'dependencies': [ 38 'dependencies': [
39 'resources', 39 'resources',
40 '../../tools/gyp/v8.gyp:v8_libplatform', 40 '../../tools/gyp/v8.gyp:v8_libplatform',
41 ], 41 ],
42 'include_dirs': [ 42 'include_dirs': [
43 '../..', 43 '../..',
44 ], 44 ],
45 'sources': [ ### gcmole(all) ### 45 'sources': [ ### gcmole(all) ###
46 '<(generated_file)', 46 '<(generated_file)',
47 'compiler/codegen-tester.cc',
48 'compiler/codegen-tester.h',
49 'compiler/function-tester.h',
50 'compiler/graph-builder-tester.cc',
51 'compiler/graph-builder-tester.h',
52 'compiler/graph-tester.h',
53 'compiler/simplified-graph-builder.cc',
54 'compiler/simplified-graph-builder.h',
55 'compiler/test-branch-combine.cc',
56 'compiler/test-codegen-deopt.cc',
57 'compiler/test-gap-resolver.cc',
58 'compiler/test-graph-reducer.cc',
59 'compiler/test-instruction-selector.cc',
60 'compiler/test-instruction.cc',
61 'compiler/test-js-context-specialization.cc',
62 'compiler/test-js-constant-cache.cc',
63 'compiler/test-js-typed-lowering.cc',
64 'compiler/test-linkage.cc',
65 'compiler/test-machine-operator-reducer.cc',
66 'compiler/test-node-algorithm.cc',
67 'compiler/test-node-cache.cc',
68 'compiler/test-node.cc',
69 'compiler/test-operator.cc',
70 'compiler/test-phi-reducer.cc',
71 'compiler/test-pipeline.cc',
72 'compiler/test-representation-change.cc',
73 'compiler/test-run-deopt.cc',
74 'compiler/test-run-intrinsics.cc',
75 'compiler/test-run-jsbranches.cc',
76 'compiler/test-run-jscalls.cc',
77 'compiler/test-run-jsexceptions.cc',
78 'compiler/test-run-jsops.cc',
79 'compiler/test-run-machops.cc',
80 'compiler/test-run-variables.cc',
81 'compiler/test-schedule.cc',
82 'compiler/test-scheduler.cc',
83 'compiler/test-simplified-lowering.cc',
84 'compiler/test-structured-ifbuilder-fuzzer.cc',
85 'compiler/test-structured-machine-assembler.cc',
47 'cctest.cc', 86 'cctest.cc',
48 'gay-fixed.cc', 87 'gay-fixed.cc',
49 'gay-precision.cc', 88 'gay-precision.cc',
50 'gay-shortest.cc', 89 'gay-shortest.cc',
51 'print-extension.cc', 90 'print-extension.cc',
52 'profiler-extension.cc', 91 'profiler-extension.cc',
53 'test-accessors.cc', 92 'test-accessors.cc',
54 'test-alloc.cc', 93 'test-alloc.cc',
55 'test-api.cc', 94 'test-api.cc',
56 'test-ast.cc', 95 'test-ast.cc',
57 'test-atomicops.cc', 96 'test-atomicops.cc',
58 'test-bignum.cc', 97 'test-bignum.cc',
59 'test-bignum-dtoa.cc', 98 'test-bignum-dtoa.cc',
99 'test-checks.cc',
60 'test-circular-queue.cc', 100 'test-circular-queue.cc',
61 'test-compiler.cc', 101 'test-compiler.cc',
62 'test-condition-variable.cc', 102 'test-condition-variable.cc',
63 'test-constantpool.cc', 103 'test-constantpool.cc',
64 'test-conversions.cc', 104 'test-conversions.cc',
65 'test-cpu.cc', 105 'test-cpu.cc',
66 'test-cpu-profiler.cc', 106 'test-cpu-profiler.cc',
67 'test-dataflow.cc', 107 'test-dataflow.cc',
68 'test-date.cc', 108 'test-date.cc',
69 'test-debug.cc', 109 'test-debug.cc',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'test-code-stubs.cc', 185 'test-code-stubs.cc',
146 'test-code-stubs-x64.cc', 186 'test-code-stubs-x64.cc',
147 'test-cpu-x64.cc', 187 'test-cpu-x64.cc',
148 'test-disasm-x64.cc', 188 'test-disasm-x64.cc',
149 'test-macro-assembler-x64.cc', 189 'test-macro-assembler-x64.cc',
150 'test-log-stack-tracer.cc' 190 'test-log-stack-tracer.cc'
151 ], 191 ],
152 }], 192 }],
153 ['v8_target_arch=="arm"', { 193 ['v8_target_arch=="arm"', {
154 'sources': [ ### gcmole(arch:arm) ### 194 'sources': [ ### gcmole(arch:arm) ###
195 'compiler/test-instruction-selector-arm.cc',
155 'test-assembler-arm.cc', 196 'test-assembler-arm.cc',
156 'test-code-stubs.cc', 197 'test-code-stubs.cc',
157 'test-code-stubs-arm.cc', 198 'test-code-stubs-arm.cc',
158 'test-disasm-arm.cc', 199 'test-disasm-arm.cc',
159 'test-macro-assembler-arm.cc' 200 'test-macro-assembler-arm.cc'
160 ], 201 ],
161 }], 202 }],
162 ['v8_target_arch=="arm64"', { 203 ['v8_target_arch=="arm64"', {
163 'sources': [ ### gcmole(arch:arm64) ### 204 'sources': [ ### gcmole(arch:arm64) ###
164 'test-utils-arm64.cc', 205 'test-utils-arm64.cc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 '<@(_outputs)', 311 '<@(_outputs)',
271 'TEST', # type 312 'TEST', # type
272 'off', # compression 313 'off', # compression
273 '<@(file_list)', 314 '<@(file_list)',
274 ], 315 ],
275 } 316 }
276 ], 317 ],
277 }, 318 },
278 ], 319 ],
279 } 320 }
OLDNEW
« no previous file with comments | « test/cctest/cctest.h ('k') | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698