| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'disassembler.cc', | 97 'disassembler.cc', |
| 98 'disassembler.h', | 98 'disassembler.h', |
| 99 'disassembler_ia32.cc', | 99 'disassembler_ia32.cc', |
| 100 'disassembler_x64.cc', | 100 'disassembler_x64.cc', |
| 101 'disassembler_arm.cc', | 101 'disassembler_arm.cc', |
| 102 'disassembler_test.cc', | 102 'disassembler_test.cc', |
| 103 'debuginfo.h', | 103 'debuginfo.h', |
| 104 'debuginfo_linux.cc', | 104 'debuginfo_linux.cc', |
| 105 'debuginfo_macos.cc', | 105 'debuginfo_macos.cc', |
| 106 'debuginfo_win.cc', | 106 'debuginfo_win.cc', |
| 107 'double_conversion.cc', |
| 108 'double_conversion.h', |
| 107 'exceptions.cc', | 109 'exceptions.cc', |
| 108 'exceptions.h', | 110 'exceptions.h', |
| 109 'exceptions_test.cc', | 111 'exceptions_test.cc', |
| 110 'flags.cc', | 112 'flags.cc', |
| 111 'flags.h', | 113 'flags.h', |
| 112 'flags_test.cc', | 114 'flags_test.cc', |
| 113 'freelist.cc', | 115 'freelist.cc', |
| 114 'freelist.h', | 116 'freelist.h', |
| 115 'freelist_test.cc', | 117 'freelist_test.cc', |
| 116 'gc_marker.cc', | 118 'gc_marker.cc', |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 'virtual_memory_test.cc', | 266 'virtual_memory_test.cc', |
| 265 'virtual_memory_win.cc', | 267 'virtual_memory_win.cc', |
| 266 'verifier.cc', | 268 'verifier.cc', |
| 267 'verifier.h', | 269 'verifier.h', |
| 268 'visitor.h', | 270 'visitor.h', |
| 269 'zone.cc', | 271 'zone.cc', |
| 270 'zone.h', | 272 'zone.h', |
| 271 'zone_test.cc', | 273 'zone_test.cc', |
| 272 ], | 274 ], |
| 273 } | 275 } |
| OLD | NEW |