| 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', |
| 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.cc', |
| 16 'assembler_arm.h', | 16 'assembler_arm.h', |
| 17 'assembler_arm_test.cc', |
| 17 'assembler_ia32.cc', | 18 'assembler_ia32.cc', |
| 18 'assembler_ia32.h', | 19 'assembler_ia32.h', |
| 19 'assembler_ia32_test.cc', | 20 'assembler_ia32_test.cc', |
| 20 'assembler_macros.h', | 21 'assembler_macros.h', |
| 21 'assembler_macros_arm.cc', | 22 'assembler_macros_arm.cc', |
| 22 'assembler_macros_arm.h', | 23 'assembler_macros_arm.h', |
| 23 'assembler_macros_ia32.cc', | 24 'assembler_macros_ia32.cc', |
| 24 'assembler_macros_ia32.h', | 25 'assembler_macros_ia32.h', |
| 25 'assembler_macros_mips.cc', | 26 'assembler_macros_mips.cc', |
| 26 'assembler_macros_mips.h', | 27 'assembler_macros_mips.h', |
| 27 'assembler_macros_x64.cc', | 28 'assembler_macros_x64.cc', |
| 28 'assembler_macros_x64.h', | 29 'assembler_macros_x64.h', |
| 29 'assembler_mips.cc', | 30 'assembler_mips.cc', |
| 30 'assembler_mips.h', | 31 'assembler_mips.h', |
| 32 'assembler_mips_test.cc', |
| 31 'assembler_x64.cc', | 33 'assembler_x64.cc', |
| 32 'assembler_x64.h', | 34 'assembler_x64.h', |
| 33 'assembler_x64_test.cc', | 35 'assembler_x64_test.cc', |
| 34 'assert_test.cc', | 36 'assert_test.cc', |
| 35 'ast.cc', | 37 'ast.cc', |
| 36 'ast.h', | 38 'ast.h', |
| 37 'ast_test.cc', | 39 'ast_test.cc', |
| 38 'ast_printer.h', | 40 'ast_printer.h', |
| 39 'ast_printer.cc', | 41 'ast_printer.cc', |
| 40 'ast_printer_test.cc', | 42 'ast_printer_test.cc', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 69 'code_descriptors.h', | 71 'code_descriptors.h', |
| 70 'code_descriptors_test.cc', | 72 'code_descriptors_test.cc', |
| 71 'code_generator.cc', | 73 'code_generator.cc', |
| 72 'code_generator.h', | 74 'code_generator.h', |
| 73 'code_generator_test.cc', | 75 'code_generator_test.cc', |
| 74 'code_observers.cc', | 76 'code_observers.cc', |
| 75 'code_observers.h', | 77 'code_observers.h', |
| 76 'code_patcher.h', | 78 'code_patcher.h', |
| 77 'code_patcher.cc', | 79 'code_patcher.cc', |
| 78 'code_patcher_arm.cc', | 80 'code_patcher_arm.cc', |
| 81 'code_patcher_arm_test.cc', |
| 79 'code_patcher_ia32.cc', | 82 'code_patcher_ia32.cc', |
| 80 'code_patcher_ia32_test.cc', | 83 'code_patcher_ia32_test.cc', |
| 81 'code_patcher_mips.cc', | 84 'code_patcher_mips.cc', |
| 85 'code_patcher_mips_test.cc', |
| 82 'code_patcher_x64.cc', | 86 'code_patcher_x64.cc', |
| 83 'code_patcher_x64_test.cc', | 87 'code_patcher_x64_test.cc', |
| 84 'compiler.h', | 88 'compiler.h', |
| 85 'compiler.cc', | 89 'compiler.cc', |
| 86 'compiler_stats.h', | 90 'compiler_stats.h', |
| 87 'compiler_stats.cc', | 91 'compiler_stats.cc', |
| 88 'compiler_test.cc', | 92 'compiler_test.cc', |
| 89 'constants_arm.h', | 93 'constants_arm.h', |
| 90 'constants_ia32.h', | 94 'constants_ia32.h', |
| 91 'constants_mips.h', | 95 'constants_mips.h', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'heap_profiler_test.cc', | 183 'heap_profiler_test.cc', |
| 180 'heap_test.cc', | 184 'heap_test.cc', |
| 181 'heap_trace.cc', | 185 'heap_trace.cc', |
| 182 'heap_trace.h', | 186 'heap_trace.h', |
| 183 'heap_trace_test.cc', | 187 'heap_trace_test.cc', |
| 184 'il_printer.cc', | 188 'il_printer.cc', |
| 185 'il_printer.h', | 189 'il_printer.h', |
| 186 'instructions.h', | 190 'instructions.h', |
| 187 'instructions_arm.cc', | 191 'instructions_arm.cc', |
| 188 'instructions_arm.h', | 192 'instructions_arm.h', |
| 193 'instructions_arm_test.cc', |
| 189 'instructions_ia32.cc', | 194 'instructions_ia32.cc', |
| 190 'instructions_ia32.h', | 195 'instructions_ia32.h', |
| 191 'instructions_ia32_test.cc', | 196 'instructions_ia32_test.cc', |
| 192 'instructions_mips.cc', | 197 'instructions_mips.cc', |
| 193 'instructions_mips.h', | 198 'instructions_mips.h', |
| 199 'instructions_mips_test.cc', |
| 194 'instructions_x64.cc', | 200 'instructions_x64.cc', |
| 195 'instructions_x64.h', | 201 'instructions_x64.h', |
| 196 'instructions_x64_test.cc', | 202 'instructions_x64_test.cc', |
| 197 'intermediate_language.cc', | 203 'intermediate_language.cc', |
| 198 'intermediate_language.h', | 204 'intermediate_language.h', |
| 199 'intermediate_language_arm.cc', | 205 'intermediate_language_arm.cc', |
| 200 'intermediate_language_ia32.cc', | 206 'intermediate_language_ia32.cc', |
| 201 'intermediate_language_mips.cc', | 207 'intermediate_language_mips.cc', |
| 202 'intermediate_language_x64.cc', | 208 'intermediate_language_x64.cc', |
| 203 'intermediate_language_test.cc', | 209 'intermediate_language_test.cc', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 'stack_frame_ia32.cc', | 295 'stack_frame_ia32.cc', |
| 290 'stack_frame_mips.cc', | 296 'stack_frame_mips.cc', |
| 291 'stack_frame_x64.cc', | 297 'stack_frame_x64.cc', |
| 292 'stack_frame.h', | 298 'stack_frame.h', |
| 293 'stack_frame_test.cc', | 299 'stack_frame_test.cc', |
| 294 'store_buffer.cc', | 300 'store_buffer.cc', |
| 295 'store_buffer.h', | 301 'store_buffer.h', |
| 296 'stub_code.cc', | 302 'stub_code.cc', |
| 297 'stub_code.h', | 303 'stub_code.h', |
| 298 'stub_code_arm.cc', | 304 'stub_code_arm.cc', |
| 305 'stub_code_arm_test.cc', |
| 299 'stub_code_ia32.cc', | 306 'stub_code_ia32.cc', |
| 300 'stub_code_ia32_test.cc', | 307 'stub_code_ia32_test.cc', |
| 301 'stub_code_mips.cc', | 308 'stub_code_mips.cc', |
| 309 'stub_code_mips_test.cc', |
| 302 'stub_code_x64.cc', | 310 'stub_code_x64.cc', |
| 303 'stub_code_x64_test.cc', | 311 'stub_code_x64_test.cc', |
| 304 'symbols.cc', | 312 'symbols.cc', |
| 305 'symbols.h', | 313 'symbols.h', |
| 306 'thread.h', | 314 'thread.h', |
| 307 'thread_test.cc', | 315 'thread_test.cc', |
| 308 'thread_pool.cc', | 316 'thread_pool.cc', |
| 309 'thread_pool.h', | 317 'thread_pool.h', |
| 310 'thread_pool_test.cc', | 318 'thread_pool_test.cc', |
| 311 'timer.cc', | 319 'timer.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 329 'verifier.cc', | 337 'verifier.cc', |
| 330 'verifier.h', | 338 'verifier.h', |
| 331 'visitor.h', | 339 'visitor.h', |
| 332 'vtune.cc', | 340 'vtune.cc', |
| 333 'vtune.h', | 341 'vtune.h', |
| 334 'zone.cc', | 342 'zone.cc', |
| 335 'zone.h', | 343 'zone.h', |
| 336 'zone_test.cc', | 344 'zone_test.cc', |
| 337 ], | 345 ], |
| 338 } | 346 } |
| OLD | NEW |