| 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', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'compiler.cc', | 91 'compiler.cc', |
| 92 'compiler.h', | 92 'compiler.h', |
| 93 'compiler_stats.cc', | 93 'compiler_stats.cc', |
| 94 'compiler_stats.h', | 94 'compiler_stats.h', |
| 95 'compiler_test.cc', | 95 'compiler_test.cc', |
| 96 'constants_arm.h', | 96 'constants_arm.h', |
| 97 'constants_arm64.h', | 97 'constants_arm64.h', |
| 98 'constants_ia32.h', | 98 'constants_ia32.h', |
| 99 'constants_mips.h', | 99 'constants_mips.h', |
| 100 'constants_x64.h', | 100 'constants_x64.h', |
| 101 'counters.cc', |
| 102 'counters.h', |
| 101 'coverage.cc', | 103 'coverage.cc', |
| 102 'coverage.h', | 104 'coverage.h', |
| 103 'cpu.h', | 105 'cpu.h', |
| 104 'cpu_arm.cc', | 106 'cpu_arm.cc', |
| 105 'cpu_arm64.cc', | 107 'cpu_arm64.cc', |
| 106 'cpu_ia32.cc', | 108 'cpu_ia32.cc', |
| 107 'cpu_mips.cc', | 109 'cpu_mips.cc', |
| 108 'cpu_test.cc', | 110 'cpu_test.cc', |
| 109 'cpu_x64.cc', | 111 'cpu_x64.cc', |
| 110 'cpuid.h', | 112 'cpuid.h', |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 'visitor.h', | 422 'visitor.h', |
| 421 'vtune.cc', | 423 'vtune.cc', |
| 422 'vtune.h', | 424 'vtune.h', |
| 423 'weak_table.cc', | 425 'weak_table.cc', |
| 424 'weak_table.h', | 426 'weak_table.h', |
| 425 'zone.cc', | 427 'zone.cc', |
| 426 'zone.h', | 428 'zone.h', |
| 427 'zone_test.cc', | 429 'zone_test.cc', |
| 428 ], | 430 ], |
| 429 } | 431 } |
| OLD | NEW |