| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'code_patcher_arm_test.cc', | 95 'code_patcher_arm_test.cc', |
| 96 'code_patcher_arm64.cc', | 96 'code_patcher_arm64.cc', |
| 97 'code_patcher_arm64_test.cc', | 97 'code_patcher_arm64_test.cc', |
| 98 'code_patcher_dbc.cc', | 98 'code_patcher_dbc.cc', |
| 99 'code_patcher_ia32.cc', | 99 'code_patcher_ia32.cc', |
| 100 'code_patcher_ia32_test.cc', | 100 'code_patcher_ia32_test.cc', |
| 101 'code_patcher_mips.cc', | 101 'code_patcher_mips.cc', |
| 102 'code_patcher_mips_test.cc', | 102 'code_patcher_mips_test.cc', |
| 103 'code_patcher_x64.cc', | 103 'code_patcher_x64.cc', |
| 104 'code_patcher_x64_test.cc', | 104 'code_patcher_x64_test.cc', |
| 105 'compilation_trace.cc', |
| 106 'compilation_trace.h', |
| 105 'compiler.cc', | 107 'compiler.cc', |
| 106 'compiler.h', | 108 'compiler.h', |
| 107 'compiler_stats.cc', | 109 'compiler_stats.cc', |
| 108 'compiler_stats.h', | 110 'compiler_stats.h', |
| 109 'compiler_test.cc', | 111 'compiler_test.cc', |
| 110 'constant_propagator.h', | 112 'constant_propagator.h', |
| 111 'constant_propagator.cc', | 113 'constant_propagator.cc', |
| 112 'constants_arm.h', | 114 'constants_arm.h', |
| 113 'constants_arm64.h', | 115 'constants_arm64.h', |
| 114 'constants_ia32.h', | 116 'constants_ia32.h', |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 'weak_code.h', | 569 'weak_code.h', |
| 568 'weak_table.cc', | 570 'weak_table.cc', |
| 569 'weak_table.h', | 571 'weak_table.h', |
| 570 'zone.cc', | 572 'zone.cc', |
| 571 'zone.h', | 573 'zone.h', |
| 572 'zone_test.cc', | 574 'zone_test.cc', |
| 573 'zone_text_buffer.cc', | 575 'zone_text_buffer.cc', |
| 574 'zone_text_buffer.h', | 576 'zone_text_buffer.h', |
| 575 ], | 577 ], |
| 576 } | 578 } |
| OLD | NEW |