| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'dart_api_message.h', | 90 'dart_api_message.h', |
| 91 'dart_entry.cc', | 91 'dart_entry.cc', |
| 92 'dart_entry.h', | 92 'dart_entry.h', |
| 93 'dart_entry_test.cc', | 93 'dart_entry_test.cc', |
| 94 'debugger.cc', | 94 'debugger.cc', |
| 95 'debugger.h', | 95 'debugger.h', |
| 96 'debugger_ia32.cc', | 96 'debugger_ia32.cc', |
| 97 'debugger_x64.cc', | 97 'debugger_x64.cc', |
| 98 'debugger_arm.cc', | 98 'debugger_arm.cc', |
| 99 'debugger_api_impl_test.cc', | 99 'debugger_api_impl_test.cc', |
| 100 'deopt_instructions.cc', |
| 101 'deopt_instructions.h', |
| 100 'disassembler.cc', | 102 'disassembler.cc', |
| 101 'disassembler.h', | 103 'disassembler.h', |
| 102 'disassembler_ia32.cc', | 104 'disassembler_ia32.cc', |
| 103 'disassembler_x64.cc', | 105 'disassembler_x64.cc', |
| 104 'disassembler_arm.cc', | 106 'disassembler_arm.cc', |
| 105 'disassembler_test.cc', | 107 'disassembler_test.cc', |
| 106 'debuginfo.h', | 108 'debuginfo.h', |
| 107 'debuginfo_linux.cc', | 109 'debuginfo_linux.cc', |
| 108 'debuginfo_macos.cc', | 110 'debuginfo_macos.cc', |
| 109 'debuginfo_win.cc', | 111 'debuginfo_win.cc', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 'virtual_memory_test.cc', | 288 'virtual_memory_test.cc', |
| 287 'virtual_memory_win.cc', | 289 'virtual_memory_win.cc', |
| 288 'verifier.cc', | 290 'verifier.cc', |
| 289 'verifier.h', | 291 'verifier.h', |
| 290 'visitor.h', | 292 'visitor.h', |
| 291 'zone.cc', | 293 'zone.cc', |
| 292 'zone.h', | 294 'zone.h', |
| 293 'zone_test.cc', | 295 'zone_test.cc', |
| 294 ], | 296 ], |
| 295 } | 297 } |
| OLD | NEW |