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

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

Issue 151163005: A64: Synchronize with r16356. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « src/x64/stub-cache-x64.cc ('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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'gay-shortest.cc', 49 'gay-shortest.cc',
50 'test-accessors.cc', 50 'test-accessors.cc',
51 'test-alloc.cc', 51 'test-alloc.cc',
52 'test-api.cc', 52 'test-api.cc',
53 'test-ast.cc', 53 'test-ast.cc',
54 'test-bignum.cc', 54 'test-bignum.cc',
55 'test-bignum-dtoa.cc', 55 'test-bignum-dtoa.cc',
56 'test-circular-queue.cc', 56 'test-circular-queue.cc',
57 'test-compiler.cc', 57 'test-compiler.cc',
58 'test-conversions.cc', 58 'test-conversions.cc',
59 'test-cpu.cc',
59 'test-cpu-profiler.cc', 60 'test-cpu-profiler.cc',
60 'test-dataflow.cc', 61 'test-dataflow.cc',
61 'test-date.cc', 62 'test-date.cc',
62 'test-debug.cc', 63 'test-debug.cc',
63 'test-declarative-accessors.cc', 64 'test-declarative-accessors.cc',
64 'test-decls.cc', 65 'test-decls.cc',
65 'test-deoptimization.cc', 66 'test-deoptimization.cc',
66 'test-dictionary.cc', 67 'test-dictionary.cc',
67 'test-diy-fp.cc', 68 'test-diy-fp.cc',
68 'test-double.cc', 69 'test-double.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'test-weakmaps.cc', 107 'test-weakmaps.cc',
107 'test-weaksets.cc', 108 'test-weaksets.cc',
108 'test-weaktypedarrays.cc' 109 'test-weaktypedarrays.cc'
109 ], 110 ],
110 'conditions': [ 111 'conditions': [
111 ['v8_target_arch=="ia32"', { 112 ['v8_target_arch=="ia32"', {
112 'sources': [ 113 'sources': [
113 'test-assembler-ia32.cc', 114 'test-assembler-ia32.cc',
114 'test-code-stubs.cc', 115 'test-code-stubs.cc',
115 'test-code-stubs-ia32.cc', 116 'test-code-stubs-ia32.cc',
117 'test-cpu-ia32.cc',
116 'test-disasm-ia32.cc', 118 'test-disasm-ia32.cc',
117 'test-log-stack-tracer.cc' 119 'test-log-stack-tracer.cc'
118 ], 120 ],
119 }], 121 }],
120 ['v8_target_arch=="x64"', { 122 ['v8_target_arch=="x64"', {
121 'sources': [ 123 'sources': [
122 'test-assembler-x64.cc', 124 'test-assembler-x64.cc',
123 'test-code-stubs.cc', 125 'test-code-stubs.cc',
124 'test-code-stubs-x64.cc', 126 'test-code-stubs-x64.cc',
127 'test-cpu-x64.cc',
125 'test-macro-assembler-x64.cc', 128 'test-macro-assembler-x64.cc',
126 'test-log-stack-tracer.cc' 129 'test-log-stack-tracer.cc'
127 ], 130 ],
128 }], 131 }],
129 ['v8_target_arch=="arm"', { 132 ['v8_target_arch=="arm"', {
130 'sources': [ 133 'sources': [
131 'test-assembler-arm.cc', 134 'test-assembler-arm.cc',
135 'test-code-stubs.cc',
136 'test-code-stubs-arm.cc',
132 'test-disasm-arm.cc' 137 'test-disasm-arm.cc'
133 ], 138 ],
134 }], 139 }],
135 ['v8_target_arch=="a64"', { 140 ['v8_target_arch=="a64"', {
136 'sources': [ 141 'sources': [
137 'test-utils-a64.cc', 142 'test-utils-a64.cc',
138 'test-assembler-a64.cc', 143 'test-assembler-a64.cc',
139 'test-disasm-a64.cc', 144 'test-disasm-a64.cc',
140 'test-fuzz-a64.cc', 145 'test-fuzz-a64.cc',
141 'test-javascript-a64.cc', 146 'test-javascript-a64.cc',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 '<@(_outputs)', 223 '<@(_outputs)',
219 'TEST', # type 224 'TEST', # type
220 'off', # compression 225 'off', # compression
221 '<@(file_list)', 226 '<@(file_list)',
222 ], 227 ],
223 } 228 }
224 ], 229 ],
225 }, 230 },
226 ], 231 ],
227 } 232 }
OLDNEW
« no previous file with comments | « src/x64/stub-cache-x64.cc ('k') | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698