| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 'thread_test.cc', | 468 'thread_test.cc', |
| 469 'timeline.cc', | 469 'timeline.cc', |
| 470 'timeline.h', | 470 'timeline.h', |
| 471 'timeline_analysis.cc', | 471 'timeline_analysis.cc', |
| 472 'timeline_analysis.h', | 472 'timeline_analysis.h', |
| 473 'timeline_test.cc', | 473 'timeline_test.cc', |
| 474 'timer.cc', | 474 'timer.cc', |
| 475 'timer.h', | 475 'timer.h', |
| 476 'token.cc', | 476 'token.cc', |
| 477 'token.h', | 477 'token.h', |
| 478 'token_position.cc', |
| 479 'token_position.h', |
| 478 'trace_buffer.cc', | 480 'trace_buffer.cc', |
| 479 'trace_buffer.h', | 481 'trace_buffer.h', |
| 480 'trace_buffer_test.cc', | 482 'trace_buffer_test.cc', |
| 481 'unibrow.cc', | 483 'unibrow.cc', |
| 482 'unibrow.h', | 484 'unibrow.h', |
| 483 'unibrow-inl.h', | 485 'unibrow-inl.h', |
| 484 'unicode.cc', | 486 'unicode.cc', |
| 485 'unicode.h', | 487 'unicode.h', |
| 486 'unicode_data.cc', | 488 'unicode_data.cc', |
| 487 'unicode_test.cc', | 489 'unicode_test.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 505 'vtune.h', | 507 'vtune.h', |
| 506 'weak_code.cc', | 508 'weak_code.cc', |
| 507 'weak_code.h', | 509 'weak_code.h', |
| 508 'weak_table.cc', | 510 'weak_table.cc', |
| 509 'weak_table.h', | 511 'weak_table.h', |
| 510 'zone.cc', | 512 'zone.cc', |
| 511 'zone.h', | 513 'zone.h', |
| 512 'zone_test.cc', | 514 'zone_test.cc', |
| 513 ], | 515 ], |
| 514 } | 516 } |
| OLD | NEW |