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