| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'class_table.h', | 53 'class_table.h', |
| 54 'code_descriptors.cc', | 54 'code_descriptors.cc', |
| 55 'code_descriptors.h', | 55 'code_descriptors.h', |
| 56 'code_descriptors_test.cc', | 56 'code_descriptors_test.cc', |
| 57 'code_generator.cc', | 57 'code_generator.cc', |
| 58 'code_generator.h', | 58 'code_generator.h', |
| 59 'code_generator_test.cc', | 59 'code_generator_test.cc', |
| 60 'code_generator_arm.h', | 60 'code_generator_arm.h', |
| 61 'code_generator_ia32.cc', | 61 'code_generator_ia32.cc', |
| 62 'code_generator_ia32.h', | 62 'code_generator_ia32.h', |
| 63 'code_generator_x64.cc', | |
| 64 'code_generator_x64.h', | 63 'code_generator_x64.h', |
| 65 'code_patcher.h', | 64 'code_patcher.h', |
| 66 'code_patcher_arm.cc', | 65 'code_patcher_arm.cc', |
| 67 'code_patcher_ia32.cc', | 66 'code_patcher_ia32.cc', |
| 68 'code_patcher_ia32_test.cc', | 67 'code_patcher_ia32_test.cc', |
| 69 'code_patcher_x64.cc', | 68 'code_patcher_x64.cc', |
| 70 'code_patcher_x64_test.cc', | 69 'code_patcher_x64_test.cc', |
| 71 'compiler.h', | 70 'compiler.h', |
| 72 'compiler.cc', | 71 'compiler.cc', |
| 73 'compiler_stats.h', | 72 'compiler_stats.h', |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 'virtual_memory_test.cc', | 274 'virtual_memory_test.cc', |
| 276 'virtual_memory_win.cc', | 275 'virtual_memory_win.cc', |
| 277 'verifier.cc', | 276 'verifier.cc', |
| 278 'verifier.h', | 277 'verifier.h', |
| 279 'visitor.h', | 278 'visitor.h', |
| 280 'zone.cc', | 279 'zone.cc', |
| 281 'zone.h', | 280 'zone.h', |
| 282 'zone_test.cc', | 281 'zone_test.cc', |
| 283 ], | 282 ], |
| 284 } | 283 } |
| OLD | NEW |