| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'deopt_instructions.h', | 106 'deopt_instructions.h', |
| 107 'disassembler.cc', | 107 'disassembler.cc', |
| 108 'disassembler.h', | 108 'disassembler.h', |
| 109 'disassembler_ia32.cc', | 109 'disassembler_ia32.cc', |
| 110 'disassembler_x64.cc', | 110 'disassembler_x64.cc', |
| 111 'disassembler_arm.cc', | 111 'disassembler_arm.cc', |
| 112 'disassembler_test.cc', | 112 'disassembler_test.cc', |
| 113 'debuginfo.h', | 113 'debuginfo.h', |
| 114 'debuginfo_android.cc', | 114 'debuginfo_android.cc', |
| 115 'debuginfo_linux.cc', | 115 'debuginfo_linux.cc', |
| 116 'debuginfo_macos.cc', | |
| 117 'debuginfo_win.cc', | |
| 118 'double_conversion.cc', | 116 'double_conversion.cc', |
| 119 'double_conversion.h', | 117 'double_conversion.h', |
| 120 'exceptions.cc', | 118 'exceptions.cc', |
| 121 'exceptions.h', | 119 'exceptions.h', |
| 122 'exceptions_test.cc', | 120 'exceptions_test.cc', |
| 123 'find_code_object_test.cc', | 121 'find_code_object_test.cc', |
| 124 'flags.cc', | 122 'flags.cc', |
| 125 'flags.h', | 123 'flags.h', |
| 126 'flags_test.cc', | 124 'flags_test.cc', |
| 127 'flow_graph.cc', | 125 'flow_graph.cc', |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 'verifier.cc', | 307 'verifier.cc', |
| 310 'verifier.h', | 308 'verifier.h', |
| 311 'visitor.h', | 309 'visitor.h', |
| 312 'vtune.cc', | 310 'vtune.cc', |
| 313 'vtune.h', | 311 'vtune.h', |
| 314 'zone.cc', | 312 'zone.cc', |
| 315 'zone.h', | 313 'zone.h', |
| 316 'zone_test.cc', | 314 'zone_test.cc', |
| 317 ], | 315 ], |
| 318 } | 316 } |
| OLD | NEW |