| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 'intermediate_language_x64.cc', | 200 'intermediate_language_x64.cc', |
| 201 'intrinsifier.cc', | 201 'intrinsifier.cc', |
| 202 'intrinsifier.h', | 202 'intrinsifier.h', |
| 203 'intrinsifier_arm.cc', | 203 'intrinsifier_arm.cc', |
| 204 'intrinsifier_ia32.cc', | 204 'intrinsifier_ia32.cc', |
| 205 'intrinsifier_mips.cc', | 205 'intrinsifier_mips.cc', |
| 206 'intrinsifier_x64.cc', | 206 'intrinsifier_x64.cc', |
| 207 'isolate.cc', | 207 'isolate.cc', |
| 208 'isolate.h', | 208 'isolate.h', |
| 209 'isolate_test.cc', | 209 'isolate_test.cc', |
| 210 'json_stream.h', |
| 211 'json_stream.cc', |
| 210 'json_test.cc', | 212 'json_test.cc', |
| 211 'locations.cc', | 213 'locations.cc', |
| 212 'locations.h', | 214 'locations.h', |
| 213 'longjump.cc', | 215 'longjump.cc', |
| 214 'longjump.h', | 216 'longjump.h', |
| 215 'longjump_test.cc', | 217 'longjump_test.cc', |
| 216 'megamorphic_cache_table.cc', | 218 'megamorphic_cache_table.cc', |
| 217 'megamorphic_cache_table.h', | 219 'megamorphic_cache_table.h', |
| 218 'memory_region.cc', | 220 'memory_region.cc', |
| 219 'memory_region.h', | 221 'memory_region.h', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 'virtual_memory_test.cc', | 335 'virtual_memory_test.cc', |
| 334 'virtual_memory_win.cc', | 336 'virtual_memory_win.cc', |
| 335 'visitor.h', | 337 'visitor.h', |
| 336 'vtune.cc', | 338 'vtune.cc', |
| 337 'vtune.h', | 339 'vtune.h', |
| 338 'zone.cc', | 340 'zone.cc', |
| 339 'zone.h', | 341 'zone.h', |
| 340 'zone_test.cc', | 342 'zone_test.cc', |
| 341 ], | 343 ], |
| 342 } | 344 } |
| OLD | NEW |