| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 'signal_handler.h', | 322 'signal_handler.h', |
| 323 'simulator.h', | 323 'simulator.h', |
| 324 'simulator_arm.cc', | 324 'simulator_arm.cc', |
| 325 'simulator_arm.h', | 325 'simulator_arm.h', |
| 326 'simulator_mips.cc', | 326 'simulator_mips.cc', |
| 327 'simulator_mips.h', | 327 'simulator_mips.h', |
| 328 'snapshot.cc', | 328 'snapshot.cc', |
| 329 'snapshot.h', | 329 'snapshot.h', |
| 330 'snapshot_ids.h', | 330 'snapshot_ids.h', |
| 331 'snapshot_test.cc', | 331 'snapshot_test.cc', |
| 332 'spaces.h', |
| 332 'stack_frame.cc', | 333 'stack_frame.cc', |
| 333 'stack_frame.h', | 334 'stack_frame.h', |
| 334 'stack_frame_arm.h', | 335 'stack_frame_arm.h', |
| 335 'stack_frame_ia32.h', | 336 'stack_frame_ia32.h', |
| 336 'stack_frame_mips.h', | 337 'stack_frame_mips.h', |
| 337 'stack_frame_test.cc', | 338 'stack_frame_test.cc', |
| 338 'stack_frame_x64.h', | 339 'stack_frame_x64.h', |
| 339 'store_buffer.cc', | 340 'store_buffer.cc', |
| 340 'store_buffer.h', | 341 'store_buffer.h', |
| 341 'stub_code.cc', | 342 'stub_code.cc', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 'visitor.h', | 391 'visitor.h', |
| 391 'vtune.cc', | 392 'vtune.cc', |
| 392 'vtune.h', | 393 'vtune.h', |
| 393 'weak_table.cc', | 394 'weak_table.cc', |
| 394 'weak_table.h', | 395 'weak_table.h', |
| 395 'zone.cc', | 396 'zone.cc', |
| 396 'zone.h', | 397 'zone.h', |
| 397 'zone_test.cc', | 398 'zone_test.cc', |
| 398 ], | 399 ], |
| 399 } | 400 } |
| OLD | NEW |