| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 'debugger.cc', | 109 'debugger.cc', |
| 110 'debugger.h', | 110 'debugger.h', |
| 111 'debugger_api_impl_test.cc', | 111 'debugger_api_impl_test.cc', |
| 112 'debugger_arm.cc', | 112 'debugger_arm.cc', |
| 113 'debugger_ia32.cc', | 113 'debugger_ia32.cc', |
| 114 'debugger_mips.cc', | 114 'debugger_mips.cc', |
| 115 'debugger_x64.cc', | 115 'debugger_x64.cc', |
| 116 'debuginfo.h', | 116 'debuginfo.h', |
| 117 'debuginfo_android.cc', | 117 'debuginfo_android.cc', |
| 118 'debuginfo_linux.cc', | 118 'debuginfo_linux.cc', |
| 119 'deferred_objects.cc', |
| 120 'deferred_objects.h', |
| 119 'deopt_instructions.cc', | 121 'deopt_instructions.cc', |
| 120 'deopt_instructions.h', | 122 'deopt_instructions.h', |
| 121 'disassembler.cc', | 123 'disassembler.cc', |
| 122 'disassembler.h', | 124 'disassembler.h', |
| 123 'disassembler_arm.cc', | 125 'disassembler_arm.cc', |
| 124 'disassembler_ia32.cc', | 126 'disassembler_ia32.cc', |
| 125 'disassembler_mips.cc', | 127 'disassembler_mips.cc', |
| 126 'disassembler_test.cc', | 128 'disassembler_test.cc', |
| 127 'disassembler_x64.cc', | 129 'disassembler_x64.cc', |
| 128 'double_conversion.cc', | 130 'double_conversion.cc', |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 'visitor.h', | 349 'visitor.h', |
| 348 'vtune.cc', | 350 'vtune.cc', |
| 349 'vtune.h', | 351 'vtune.h', |
| 350 'weak_table.cc', | 352 'weak_table.cc', |
| 351 'weak_table.h', | 353 'weak_table.h', |
| 352 'zone.cc', | 354 'zone.cc', |
| 353 'zone.h', | 355 'zone.h', |
| 354 'zone_test.cc', | 356 'zone_test.cc', |
| 355 ], | 357 ], |
| 356 } | 358 } |
| OLD | NEW |