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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'test-mutex.cc', | 88 'test-mutex.cc', |
89 'test-object-observe.cc', | 89 'test-object-observe.cc', |
90 'test-parsing.cc', | 90 'test-parsing.cc', |
91 'test-platform.cc', | 91 'test-platform.cc', |
92 'test-platform-tls.cc', | 92 'test-platform-tls.cc', |
93 'test-profile-generator.cc', | 93 'test-profile-generator.cc', |
94 'test-random.cc', | 94 'test-random.cc', |
95 'test-random-number-generator.cc', | 95 'test-random-number-generator.cc', |
96 'test-regexp.cc', | 96 'test-regexp.cc', |
97 'test-reloc-info.cc', | 97 'test-reloc-info.cc', |
| 98 'test-representation.cc', |
98 'test-semaphore.cc', | 99 'test-semaphore.cc', |
99 'test-serialize.cc', | 100 'test-serialize.cc', |
100 'test-socket.cc', | 101 'test-socket.cc', |
101 'test-spaces.cc', | 102 'test-spaces.cc', |
102 'test-strings.cc', | 103 'test-strings.cc', |
103 'test-symbols.cc', | 104 'test-symbols.cc', |
104 'test-strtod.cc', | 105 'test-strtod.cc', |
105 'test-thread-termination.cc', | 106 'test-thread-termination.cc', |
106 'test-threads.cc', | 107 'test-threads.cc', |
107 'test-time.cc', | 108 'test-time.cc', |
108 'test-types.cc', | 109 'test-types.cc', |
109 'test-unbound-queue.cc', | 110 'test-unbound-queue.cc', |
110 'test-unique.cc', | 111 'test-unique.cc', |
111 'test-utils.cc', | 112 'test-utils.cc', |
112 'test-version.cc', | 113 'test-version.cc', |
113 'test-weakmaps.cc', | 114 'test-weakmaps.cc', |
114 'test-weaksets.cc', | 115 'test-weaksets.cc', |
115 'test-weaktypedarrays.cc' | 116 'test-weaktypedarrays.cc' |
116 ], | 117 ], |
117 'conditions': [ | 118 'conditions': [ |
118 ['v8_target_arch=="ia32"', { | 119 ['v8_target_arch=="ia32"', { |
119 'sources': [ | 120 'sources': [ |
120 'test-assembler-ia32.cc', | 121 'test-assembler-ia32.cc', |
121 'test-code-stubs.cc', | 122 'test-code-stubs.cc', |
122 'test-code-stubs-ia32.cc', | 123 'test-code-stubs-ia32.cc', |
123 'test-cpu-ia32.cc', | 124 'test-cpu-ia32.cc', |
124 'test-disasm-ia32.cc', | 125 'test-disasm-ia32.cc', |
| 126 'test-macro-assembler-ia32.cc', |
125 'test-log-stack-tracer.cc' | 127 'test-log-stack-tracer.cc' |
126 ], | 128 ], |
127 }], | 129 }], |
128 ['v8_target_arch=="x64"', { | 130 ['v8_target_arch=="x64"', { |
129 'sources': [ | 131 'sources': [ |
130 'test-assembler-x64.cc', | 132 'test-assembler-x64.cc', |
131 'test-code-stubs.cc', | 133 'test-code-stubs.cc', |
132 'test-code-stubs-x64.cc', | 134 'test-code-stubs-x64.cc', |
133 'test-cpu-x64.cc', | 135 'test-cpu-x64.cc', |
134 'test-macro-assembler-x64.cc', | 136 'test-macro-assembler-x64.cc', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 '<@(_outputs)', | 223 '<@(_outputs)', |
222 'TEST', # type | 224 'TEST', # type |
223 'off', # compression | 225 'off', # compression |
224 '<@(file_list)', | 226 '<@(file_list)', |
225 ], | 227 ], |
226 } | 228 } |
227 ], | 229 ], |
228 }, | 230 }, |
229 ], | 231 ], |
230 } | 232 } |
OLD | NEW |