| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'code_descriptors.h', | 51 'code_descriptors.h', |
| 52 'code_descriptors_test.cc', | 52 'code_descriptors_test.cc', |
| 53 'code_generator.cc', | 53 'code_generator.cc', |
| 54 'code_generator.h', | 54 'code_generator.h', |
| 55 'code_generator_test.cc', | 55 'code_generator_test.cc', |
| 56 'code_generator_arm.h', | 56 'code_generator_arm.h', |
| 57 'code_generator_ia32.cc', | 57 'code_generator_ia32.cc', |
| 58 'code_generator_ia32.h', | 58 'code_generator_ia32.h', |
| 59 'code_generator_x64.cc', | 59 'code_generator_x64.cc', |
| 60 'code_generator_x64.h', | 60 'code_generator_x64.h', |
| 61 'code_index_table.cc', | |
| 62 'code_index_table.h', | |
| 63 'code_index_table_test.cc', | |
| 64 'code_patcher.h', | 61 'code_patcher.h', |
| 65 'code_patcher_arm.cc', | 62 'code_patcher_arm.cc', |
| 66 'code_patcher_ia32.cc', | 63 'code_patcher_ia32.cc', |
| 67 'code_patcher_ia32_test.cc', | 64 'code_patcher_ia32_test.cc', |
| 68 'code_patcher_x64.cc', | 65 'code_patcher_x64.cc', |
| 69 'code_patcher_x64_test.cc', | 66 'code_patcher_x64_test.cc', |
| 70 'compiler.h', | 67 'compiler.h', |
| 71 'compiler.cc', | 68 'compiler.cc', |
| 72 'compiler_stats.h', | 69 'compiler_stats.h', |
| 73 'compiler_stats.cc', | 70 'compiler_stats.cc', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'disassembler_test.cc', | 102 'disassembler_test.cc', |
| 106 'debuginfo.h', | 103 'debuginfo.h', |
| 107 'debuginfo_linux.cc', | 104 'debuginfo_linux.cc', |
| 108 'debuginfo_macos.cc', | 105 'debuginfo_macos.cc', |
| 109 'debuginfo_win.cc', | 106 'debuginfo_win.cc', |
| 110 'double_conversion.cc', | 107 'double_conversion.cc', |
| 111 'double_conversion.h', | 108 'double_conversion.h', |
| 112 'exceptions.cc', | 109 'exceptions.cc', |
| 113 'exceptions.h', | 110 'exceptions.h', |
| 114 'exceptions_test.cc', | 111 'exceptions_test.cc', |
| 112 'find_code_object_test.cc', |
| 115 'flags.cc', | 113 'flags.cc', |
| 116 'flags.h', | 114 'flags.h', |
| 117 'flags_test.cc', | 115 'flags_test.cc', |
| 118 'flow_graph_builder.cc', | 116 'flow_graph_builder.cc', |
| 119 'flow_graph_builder.h', | 117 'flow_graph_builder.h', |
| 120 'flow_graph_compiler.h', | 118 'flow_graph_compiler.h', |
| 121 'flow_graph_compiler_arm.cc', | 119 'flow_graph_compiler_arm.cc', |
| 122 'flow_graph_compiler_arm.h', | 120 'flow_graph_compiler_arm.h', |
| 123 'flow_graph_compiler_ia32.cc', | 121 'flow_graph_compiler_ia32.cc', |
| 124 'flow_graph_compiler_ia32.h', | 122 'flow_graph_compiler_ia32.h', |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'virtual_memory_test.cc', | 269 'virtual_memory_test.cc', |
| 272 'virtual_memory_win.cc', | 270 'virtual_memory_win.cc', |
| 273 'verifier.cc', | 271 'verifier.cc', |
| 274 'verifier.h', | 272 'verifier.h', |
| 275 'visitor.h', | 273 'visitor.h', |
| 276 'zone.cc', | 274 'zone.cc', |
| 277 'zone.h', | 275 'zone.h', |
| 278 'zone_test.cc', | 276 'zone_test.cc', |
| 279 ], | 277 ], |
| 280 } | 278 } |
| OLD | NEW |