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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'code_patcher_ia32_test.cc', | 88 'code_patcher_ia32_test.cc', |
89 'code_patcher_mips.cc', | 89 'code_patcher_mips.cc', |
90 'code_patcher_mips_test.cc', | 90 'code_patcher_mips_test.cc', |
91 'code_patcher_x64.cc', | 91 'code_patcher_x64.cc', |
92 'code_patcher_x64_test.cc', | 92 'code_patcher_x64_test.cc', |
93 'compiler.cc', | 93 'compiler.cc', |
94 'compiler.h', | 94 'compiler.h', |
95 'compiler_stats.cc', | 95 'compiler_stats.cc', |
96 'compiler_stats.h', | 96 'compiler_stats.h', |
97 'compiler_test.cc', | 97 'compiler_test.cc', |
| 98 'constant_propagator.h', |
| 99 'constant_propagator.cc', |
98 'constants_arm.h', | 100 'constants_arm.h', |
99 'constants_arm64.h', | 101 'constants_arm64.h', |
100 'constants_ia32.h', | 102 'constants_ia32.h', |
101 'constants_mips.h', | 103 'constants_mips.h', |
102 'constants_x64.h', | 104 'constants_x64.h', |
103 'counters.cc', | 105 'counters.cc', |
104 'counters.h', | 106 'counters.h', |
105 'coverage.cc', | 107 'coverage.cc', |
106 'coverage.h', | 108 'coverage.h', |
107 'coverage_test.cc', | 109 'coverage_test.cc', |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 'vtune.h', | 467 'vtune.h', |
466 'weak_code.cc', | 468 'weak_code.cc', |
467 'weak_code.h', | 469 'weak_code.h', |
468 'weak_table.cc', | 470 'weak_table.cc', |
469 'weak_table.h', | 471 'weak_table.h', |
470 'zone.cc', | 472 'zone.cc', |
471 'zone.h', | 473 'zone.h', |
472 'zone_test.cc', | 474 'zone_test.cc', |
473 ], | 475 ], |
474 } | 476 } |
OLD | NEW |