OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # This file contains all sources (vm and tests) for the dart virtual machine. | 5 # This file contains all sources (vm and tests) for the dart virtual machine. |
6 # Unit test files need to have a '_test' suffix appended to the name. | 6 # Unit test files need to have a '_test' suffix appended to the name. |
7 { | 7 { |
8 'sources': [ | 8 'sources': [ |
9 'allocation.cc', | 9 'allocation.cc', |
10 'allocation.h', | 10 'allocation.h', |
(...skipping 201 matching lines...) Loading... |
212 'stack_frame.cc', | 212 'stack_frame.cc', |
213 'stack_frame_arm.cc', | 213 'stack_frame_arm.cc', |
214 'stack_frame_ia32.cc', | 214 'stack_frame_ia32.cc', |
215 'stack_frame_x64.cc', | 215 'stack_frame_x64.cc', |
216 'stack_frame.h', | 216 'stack_frame.h', |
217 'stack_frame_test.cc', | 217 'stack_frame_test.cc', |
218 'store_buffer.cc', | 218 'store_buffer.cc', |
219 'store_buffer.h', | 219 'store_buffer.h', |
220 'stub_code.cc', | 220 'stub_code.cc', |
221 'stub_code.h', | 221 'stub_code.h', |
| 222 'stub_code_arm.cc', |
222 'stub_code_ia32.cc', | 223 'stub_code_ia32.cc', |
223 'stub_code_arm.cc', | 224 'stub_code_ia32_test.cc', |
224 'stub_code_x64.cc', | 225 'stub_code_x64.cc', |
225 'stub_code_ia32_test.cc', | 226 'stub_code_x64_test.cc', |
226 'thread.h', | 227 'thread.h', |
227 'thread_linux.cc', | 228 'thread_linux.cc', |
228 'thread_linux.h', | 229 'thread_linux.h', |
229 'thread_macos.cc', | 230 'thread_macos.cc', |
230 'thread_macos.h', | 231 'thread_macos.h', |
231 'thread_test.cc', | 232 'thread_test.cc', |
232 'thread_win.cc', | 233 'thread_win.cc', |
233 'thread_win.h', | 234 'thread_win.h', |
234 'timer.cc', | 235 'timer.cc', |
235 'timer.h', | 236 'timer.h', |
(...skipping 15 matching lines...) Loading... |
251 'virtual_memory_test.cc', | 252 'virtual_memory_test.cc', |
252 'virtual_memory_win.cc', | 253 'virtual_memory_win.cc', |
253 'verifier.cc', | 254 'verifier.cc', |
254 'verifier.h', | 255 'verifier.h', |
255 'visitor.h', | 256 'visitor.h', |
256 'zone.cc', | 257 'zone.cc', |
257 'zone.h', | 258 'zone.h', |
258 'zone_test.cc', | 259 'zone_test.cc', |
259 ], | 260 ], |
260 } | 261 } |
OLD | NEW |