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