| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 101 'counters.cc', |
| 102 'counters.h', | 102 'counters.h', |
| 103 'coverage.cc', | 103 'coverage.cc', |
| 104 'coverage.h', | 104 'coverage.h', |
| 105 'coverage_test.cc', |
| 105 'cpu.h', | 106 'cpu.h', |
| 106 'cpu_arm.cc', | 107 'cpu_arm.cc', |
| 107 'cpu_arm64.cc', | 108 'cpu_arm64.cc', |
| 108 'cpu_ia32.cc', | 109 'cpu_ia32.cc', |
| 109 'cpu_mips.cc', | 110 'cpu_mips.cc', |
| 110 'cpu_test.cc', | 111 'cpu_test.cc', |
| 111 'cpu_x64.cc', | 112 'cpu_x64.cc', |
| 112 'cpuid.h', | 113 'cpuid.h', |
| 113 'cpuid.cc', | 114 'cpuid.cc', |
| 114 'cpuinfo.h', | 115 'cpuinfo.h', |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 'visitor.h', | 426 'visitor.h', |
| 426 'vtune.cc', | 427 'vtune.cc', |
| 427 'vtune.h', | 428 'vtune.h', |
| 428 'weak_table.cc', | 429 'weak_table.cc', |
| 429 'weak_table.h', | 430 'weak_table.h', |
| 430 'zone.cc', | 431 'zone.cc', |
| 431 'zone.h', | 432 'zone.h', |
| 432 'zone_test.cc', | 433 'zone_test.cc', |
| 433 ], | 434 ], |
| 434 } | 435 } |
| OLD | NEW |