| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 'il_printer.cc', | 151 'il_printer.cc', |
| 152 'instructions.h', | 152 'instructions.h', |
| 153 'instructions_ia32.cc', | 153 'instructions_ia32.cc', |
| 154 'instructions_ia32.h', | 154 'instructions_ia32.h', |
| 155 'instructions_ia32_test.cc', | 155 'instructions_ia32_test.cc', |
| 156 'instructions_x64.cc', | 156 'instructions_x64.cc', |
| 157 'instructions_x64.h', | 157 'instructions_x64.h', |
| 158 'instructions_x64_test.cc', | 158 'instructions_x64_test.cc', |
| 159 'intermediate_language.cc', | 159 'intermediate_language.cc', |
| 160 'intermediate_language.h', | 160 'intermediate_language.h', |
| 161 'intermediate_language_x64.cc', |
| 161 'intermediate_language_test.cc', | 162 'intermediate_language_test.cc', |
| 162 'intrinsifier.h', | 163 'intrinsifier.h', |
| 163 'intrinsifier.cc', | 164 'intrinsifier.cc', |
| 164 'intrinsifier_arm.cc', | 165 'intrinsifier_arm.cc', |
| 165 'intrinsifier_ia32.cc', | 166 'intrinsifier_ia32.cc', |
| 166 'intrinsifier_x64.cc', | 167 'intrinsifier_x64.cc', |
| 167 'isolate.cc', | 168 'isolate.cc', |
| 168 'isolate.h', | 169 'isolate.h', |
| 169 'isolate_test.cc', | 170 'isolate_test.cc', |
| 170 'json_test.cc', | 171 'json_test.cc', |
| 172 'locations.cc', |
| 173 'locations.h', |
| 171 'longjump.cc', | 174 'longjump.cc', |
| 172 'longjump.h', | 175 'longjump.h', |
| 173 'longjump_test.cc', | 176 'longjump_test.cc', |
| 174 'memory_region.cc', | 177 'memory_region.cc', |
| 175 'memory_region.h', | 178 'memory_region.h', |
| 176 'memory_region_test.cc', | 179 'memory_region_test.cc', |
| 177 'message.cc', | 180 'message.cc', |
| 178 'message.h', | 181 'message.h', |
| 179 'message_test.cc', | 182 'message_test.cc', |
| 180 'message_handler.cc', | 183 'message_handler.cc', |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 'virtual_memory_test.cc', | 282 'virtual_memory_test.cc', |
| 280 'virtual_memory_win.cc', | 283 'virtual_memory_win.cc', |
| 281 'verifier.cc', | 284 'verifier.cc', |
| 282 'verifier.h', | 285 'verifier.h', |
| 283 'visitor.h', | 286 'visitor.h', |
| 284 'zone.cc', | 287 'zone.cc', |
| 285 'zone.h', | 288 'zone.h', |
| 286 'zone_test.cc', | 289 'zone_test.cc', |
| 287 ], | 290 ], |
| 288 } | 291 } |
| OLD | NEW |