| 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 16 matching lines...) Expand all Loading... |
| 27 'assembler_x64.cc', | 27 'assembler_x64.cc', |
| 28 'assembler_x64.h', | 28 'assembler_x64.h', |
| 29 'assembler_x64_test.cc', | 29 'assembler_x64_test.cc', |
| 30 'assert_test.cc', | 30 'assert_test.cc', |
| 31 'ast.cc', | 31 'ast.cc', |
| 32 'ast.h', | 32 'ast.h', |
| 33 'ast_printer.cc', | 33 'ast_printer.cc', |
| 34 'ast_printer.h', | 34 'ast_printer.h', |
| 35 'ast_printer_test.cc', | 35 'ast_printer_test.cc', |
| 36 'ast_test.cc', | 36 'ast_test.cc', |
| 37 'ast_transformer.cc', |
| 38 'ast_transformer.h', |
| 37 'atomic.h', | 39 'atomic.h', |
| 38 'atomic_android.cc', | 40 'atomic_android.cc', |
| 39 'atomic_linux.cc', | 41 'atomic_linux.cc', |
| 40 'atomic_macos.cc', | 42 'atomic_macos.cc', |
| 41 'atomic_win.cc', | 43 'atomic_win.cc', |
| 42 'base_isolate.h', | 44 'base_isolate.h', |
| 43 'benchmark_test.cc', | 45 'benchmark_test.cc', |
| 44 'benchmark_test.h', | 46 'benchmark_test.h', |
| 45 'bigint_operations.cc', | 47 'bigint_operations.cc', |
| 46 'bigint_operations.h', | 48 'bigint_operations.h', |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 'visitor.h', | 446 'visitor.h', |
| 445 'vtune.cc', | 447 'vtune.cc', |
| 446 'vtune.h', | 448 'vtune.h', |
| 447 'weak_table.cc', | 449 'weak_table.cc', |
| 448 'weak_table.h', | 450 'weak_table.h', |
| 449 'zone.cc', | 451 'zone.cc', |
| 450 'zone.h', | 452 'zone.h', |
| 451 'zone_test.cc', | 453 'zone_test.cc', |
| 452 ], | 454 ], |
| 453 } | 455 } |
| OLD | NEW |