| OLD | NEW |
| 1 # Copyright (c) 2012, 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', |
| 11 'allocation_test.cc', | 11 'allocation_test.cc', |
| 12 'assembler.cc', | 12 'assembler.cc', |
| 13 'assembler.h', | 13 'assembler.h', |
| 14 'assembler_test.cc', | 14 'assembler_test.cc', |
| 15 'assembler_arm.cc', |
| 15 'assembler_arm.h', | 16 'assembler_arm.h', |
| 16 'assembler_ia32.cc', | 17 'assembler_ia32.cc', |
| 17 'assembler_ia32.h', | 18 'assembler_ia32.h', |
| 18 'assembler_ia32_test.cc', | 19 'assembler_ia32_test.cc', |
| 19 'assembler_macros.h', | 20 'assembler_macros.h', |
| 21 'assembler_macros_arm.cc', |
| 22 'assembler_macros_arm.h', |
| 20 'assembler_macros_ia32.cc', | 23 'assembler_macros_ia32.cc', |
| 21 'assembler_macros_ia32.h', | 24 'assembler_macros_ia32.h', |
| 22 'assembler_macros_x64.cc', | 25 'assembler_macros_x64.cc', |
| 23 'assembler_macros_x64.h', | 26 'assembler_macros_x64.h', |
| 24 'assembler_x64.cc', | 27 'assembler_x64.cc', |
| 25 'assembler_x64.h', | 28 'assembler_x64.h', |
| 26 'assembler_x64_test.cc', | 29 'assembler_x64_test.cc', |
| 27 'assert_test.cc', | 30 'assert_test.cc', |
| 28 'ast.cc', | 31 'ast.cc', |
| 29 'ast.h', | 32 'ast.h', |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'heap_profiler.cc', | 170 'heap_profiler.cc', |
| 168 'heap_profiler.h', | 171 'heap_profiler.h', |
| 169 'heap_profiler_test.cc', | 172 'heap_profiler_test.cc', |
| 170 'heap_test.cc', | 173 'heap_test.cc', |
| 171 'heap_trace.cc', | 174 'heap_trace.cc', |
| 172 'heap_trace.h', | 175 'heap_trace.h', |
| 173 'heap_trace_test.cc', | 176 'heap_trace_test.cc', |
| 174 'il_printer.cc', | 177 'il_printer.cc', |
| 175 'il_printer.h', | 178 'il_printer.h', |
| 176 'instructions.h', | 179 'instructions.h', |
| 180 'instructions_arm.cc', |
| 181 'instructions_arm.h', |
| 177 'instructions_ia32.cc', | 182 'instructions_ia32.cc', |
| 178 'instructions_ia32.h', | 183 'instructions_ia32.h', |
| 179 'instructions_ia32_test.cc', | 184 'instructions_ia32_test.cc', |
| 180 'instructions_x64.cc', | 185 'instructions_x64.cc', |
| 181 'instructions_x64.h', | 186 'instructions_x64.h', |
| 182 'instructions_x64_test.cc', | 187 'instructions_x64_test.cc', |
| 183 'intermediate_language.cc', | 188 'intermediate_language.cc', |
| 184 'intermediate_language.h', | 189 'intermediate_language.h', |
| 190 'intermediate_language_arm.cc', |
| 185 'intermediate_language_ia32.cc', | 191 'intermediate_language_ia32.cc', |
| 186 'intermediate_language_x64.cc', | 192 'intermediate_language_x64.cc', |
| 187 'intermediate_language_test.cc', | 193 'intermediate_language_test.cc', |
| 188 'intrinsifier.h', | 194 'intrinsifier.h', |
| 189 'intrinsifier.cc', | 195 'intrinsifier.cc', |
| 190 'intrinsifier_arm.cc', | 196 'intrinsifier_arm.cc', |
| 191 'intrinsifier_ia32.cc', | 197 'intrinsifier_ia32.cc', |
| 192 'intrinsifier_x64.cc', | 198 'intrinsifier_x64.cc', |
| 193 'isolate.cc', | 199 'isolate.cc', |
| 194 'isolate.h', | 200 'isolate.h', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 'verifier.cc', | 314 'verifier.cc', |
| 309 'verifier.h', | 315 'verifier.h', |
| 310 'visitor.h', | 316 'visitor.h', |
| 311 'vtune.cc', | 317 'vtune.cc', |
| 312 'vtune.h', | 318 'vtune.h', |
| 313 'zone.cc', | 319 'zone.cc', |
| 314 'zone.h', | 320 'zone.h', |
| 315 'zone_test.cc', | 321 'zone_test.cc', |
| 316 ], | 322 ], |
| 317 } | 323 } |
| OLD | NEW |