| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 'compiler_stats.cc', | 96 'compiler_stats.cc', |
| 97 'compiler_stats.h', | 97 'compiler_stats.h', |
| 98 'compiler_test.cc', | 98 'compiler_test.cc', |
| 99 'constant_propagator.h', | 99 'constant_propagator.h', |
| 100 'constant_propagator.cc', | 100 'constant_propagator.cc', |
| 101 'constants_arm.h', | 101 'constants_arm.h', |
| 102 'constants_arm64.h', | 102 'constants_arm64.h', |
| 103 'constants_ia32.h', | 103 'constants_ia32.h', |
| 104 'constants_mips.h', | 104 'constants_mips.h', |
| 105 'constants_x64.h', | 105 'constants_x64.h', |
| 106 'counters.cc', | |
| 107 'counters.h', | |
| 108 'coverage.cc', | 106 'coverage.cc', |
| 109 'coverage.h', | 107 'coverage.h', |
| 110 'coverage_test.cc', | 108 'coverage_test.cc', |
| 111 'cpu.h', | 109 'cpu.h', |
| 112 'cpu_arm.cc', | 110 'cpu_arm.cc', |
| 113 'cpu_arm64.cc', | 111 'cpu_arm64.cc', |
| 114 'cpu_ia32.cc', | 112 'cpu_ia32.cc', |
| 115 'cpu_mips.cc', | 113 'cpu_mips.cc', |
| 116 'cpu_test.cc', | 114 'cpu_test.cc', |
| 117 'cpu_x64.cc', | 115 'cpu_x64.cc', |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 'vtune.h', | 496 'vtune.h', |
| 499 'weak_code.cc', | 497 'weak_code.cc', |
| 500 'weak_code.h', | 498 'weak_code.h', |
| 501 'weak_table.cc', | 499 'weak_table.cc', |
| 502 'weak_table.h', | 500 'weak_table.h', |
| 503 'zone.cc', | 501 'zone.cc', |
| 504 'zone.h', | 502 'zone.h', |
| 505 'zone_test.cc', | 503 'zone_test.cc', |
| 506 ], | 504 ], |
| 507 } | 505 } |
| OLD | NEW |