OLD | NEW |
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 Loading... |
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 Loading... |
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', |
132 'test-disasm-arm.cc' | 135 'test-disasm-arm.cc' |
133 ], | 136 ], |
134 }], | 137 }], |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 '<@(_outputs)', | 211 '<@(_outputs)', |
209 'TEST', # type | 212 'TEST', # type |
210 'off', # compression | 213 'off', # compression |
211 '<@(file_list)', | 214 '<@(file_list)', |
212 ], | 215 ], |
213 } | 216 } |
214 ], | 217 ], |
215 }, | 218 }, |
216 ], | 219 ], |
217 } | 220 } |
OLD | NEW |