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