| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 'intrinsifier_mips.cc', | 250 'intrinsifier_mips.cc', |
| 251 'intrinsifier_x64.cc', | 251 'intrinsifier_x64.cc', |
| 252 'isolate.cc', | 252 'isolate.cc', |
| 253 'isolate.h', | 253 'isolate.h', |
| 254 'isolate_test.cc', | 254 'isolate_test.cc', |
| 255 'json_stream.h', | 255 'json_stream.h', |
| 256 'json_stream.cc', | 256 'json_stream.cc', |
| 257 'json_test.cc', | 257 'json_test.cc', |
| 258 'locations.cc', | 258 'locations.cc', |
| 259 'locations.h', | 259 'locations.h', |
| 260 'lockers.cc', |
| 260 'lockers.h', | 261 'lockers.h', |
| 261 'log_test.cc', | 262 'log_test.cc', |
| 262 'log.cc', | 263 'log.cc', |
| 263 'log.h', | 264 'log.h', |
| 264 'longjump.cc', | 265 'longjump.cc', |
| 265 'longjump.h', | 266 'longjump.h', |
| 266 'longjump_test.cc', | 267 'longjump_test.cc', |
| 267 'megamorphic_cache_table.cc', | 268 'megamorphic_cache_table.cc', |
| 268 'megamorphic_cache_table.h', | 269 'megamorphic_cache_table.h', |
| 269 'memory_region.cc', | 270 'memory_region.cc', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 'ring_buffer.h', | 377 'ring_buffer.h', |
| 377 'ring_buffer_test.cc', | 378 'ring_buffer_test.cc', |
| 378 'runtime_entry.h', | 379 'runtime_entry.h', |
| 379 'runtime_entry_list.h', | 380 'runtime_entry_list.h', |
| 380 'runtime_entry_arm.cc', | 381 'runtime_entry_arm.cc', |
| 381 'runtime_entry_arm64.cc', | 382 'runtime_entry_arm64.cc', |
| 382 'runtime_entry_ia32.cc', | 383 'runtime_entry_ia32.cc', |
| 383 'runtime_entry_mips.cc', | 384 'runtime_entry_mips.cc', |
| 384 'runtime_entry.cc', | 385 'runtime_entry.cc', |
| 385 'runtime_entry_x64.cc', | 386 'runtime_entry_x64.cc', |
| 387 'safepoint.cc', |
| 388 'safepoint.h', |
| 386 'scanner.cc', | 389 'scanner.cc', |
| 387 'scanner.h', | 390 'scanner.h', |
| 388 'scanner_test.cc', | 391 'scanner_test.cc', |
| 389 'scavenger.cc', | 392 'scavenger.cc', |
| 390 'scavenger.h', | 393 'scavenger.h', |
| 391 'scavenger_test.cc', | 394 'scavenger_test.cc', |
| 392 'scope_timer.h', | 395 'scope_timer.h', |
| 393 'scopes.cc', | 396 'scopes.cc', |
| 394 'scopes.h', | 397 'scopes.h', |
| 395 'scopes_test.cc', | 398 'scopes_test.cc', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 'vtune.h', | 504 'vtune.h', |
| 502 'weak_code.cc', | 505 'weak_code.cc', |
| 503 'weak_code.h', | 506 'weak_code.h', |
| 504 'weak_table.cc', | 507 'weak_table.cc', |
| 505 'weak_table.h', | 508 'weak_table.h', |
| 506 'zone.cc', | 509 'zone.cc', |
| 507 'zone.h', | 510 'zone.h', |
| 508 'zone_test.cc', | 511 'zone_test.cc', |
| 509 ], | 512 ], |
| 510 } | 513 } |
| OLD | NEW |