| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'class_finalizer.cc', | 54 'class_finalizer.cc', |
| 55 'class_finalizer_test.cc', | 55 'class_finalizer_test.cc', |
| 56 'class_table.cc', | 56 'class_table.cc', |
| 57 'class_table.h', | 57 'class_table.h', |
| 58 'code_descriptors.cc', | 58 'code_descriptors.cc', |
| 59 'code_descriptors.h', | 59 'code_descriptors.h', |
| 60 'code_descriptors_test.cc', | 60 'code_descriptors_test.cc', |
| 61 'code_generator.cc', | 61 'code_generator.cc', |
| 62 'code_generator.h', | 62 'code_generator.h', |
| 63 'code_generator_test.cc', | 63 'code_generator_test.cc', |
| 64 'code_generator_arm.h', | |
| 65 'code_generator_ia32.cc', | |
| 66 'code_generator_ia32.h', | |
| 67 'code_generator_x64.h', | |
| 68 'code_patcher.h', | 64 'code_patcher.h', |
| 69 'code_patcher_arm.cc', | 65 'code_patcher_arm.cc', |
| 70 'code_patcher_ia32.cc', | 66 'code_patcher_ia32.cc', |
| 71 'code_patcher_ia32_test.cc', | 67 'code_patcher_ia32_test.cc', |
| 72 'code_patcher_x64.cc', | 68 'code_patcher_x64.cc', |
| 73 'code_patcher_x64_test.cc', | 69 'code_patcher_x64_test.cc', |
| 74 'compiler.h', | 70 'compiler.h', |
| 75 'compiler.cc', | 71 'compiler.cc', |
| 76 'compiler_stats.h', | 72 'compiler_stats.h', |
| 77 'compiler_stats.cc', | 73 'compiler_stats.cc', |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 'native_message_handler.h', | 199 'native_message_handler.h', |
| 204 'object.cc', | 200 'object.cc', |
| 205 'object.h', | 201 'object.h', |
| 206 'object_test.cc', | 202 'object_test.cc', |
| 207 'object_arm_test.cc', | 203 'object_arm_test.cc', |
| 208 'object_ia32_test.cc', | 204 'object_ia32_test.cc', |
| 209 'object_x64_test.cc', | 205 'object_x64_test.cc', |
| 210 'object_store.cc', | 206 'object_store.cc', |
| 211 'object_store.h', | 207 'object_store.h', |
| 212 'object_store_test.cc', | 208 'object_store_test.cc', |
| 213 'opt_code_generator.h', | |
| 214 'opt_code_generator_arm.h', | |
| 215 'opt_code_generator_ia32.h', | |
| 216 'opt_code_generator_ia32.cc', | |
| 217 'opt_code_generator_x64.h', | |
| 218 'os_linux.cc', | 209 'os_linux.cc', |
| 219 'os_macos.cc', | 210 'os_macos.cc', |
| 220 'os_win.cc', | 211 'os_win.cc', |
| 221 'os.h', | 212 'os.h', |
| 222 'os_test.cc', | 213 'os_test.cc', |
| 223 'parser.cc', | 214 'parser.cc', |
| 224 'parser.h', | 215 'parser.h', |
| 225 'parser_test.cc', | 216 'parser_test.cc', |
| 226 'pages.cc', | 217 'pages.cc', |
| 227 'pages.h', | 218 'pages.h', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 'virtual_memory_test.cc', | 283 'virtual_memory_test.cc', |
| 293 'virtual_memory_win.cc', | 284 'virtual_memory_win.cc', |
| 294 'verifier.cc', | 285 'verifier.cc', |
| 295 'verifier.h', | 286 'verifier.h', |
| 296 'visitor.h', | 287 'visitor.h', |
| 297 'zone.cc', | 288 'zone.cc', |
| 298 'zone.h', | 289 'zone.h', |
| 299 'zone_test.cc', | 290 'zone_test.cc', |
| 300 ], | 291 ], |
| 301 } | 292 } |
| OLD | NEW |