| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'code_patcher_x64_test.cc', | 80 'code_patcher_x64_test.cc', |
| 81 'compiler.cc', | 81 'compiler.cc', |
| 82 'compiler.h', | 82 'compiler.h', |
| 83 'compiler_stats.cc', | 83 'compiler_stats.cc', |
| 84 'compiler_stats.h', | 84 'compiler_stats.h', |
| 85 'compiler_test.cc', | 85 'compiler_test.cc', |
| 86 'constants_arm.h', | 86 'constants_arm.h', |
| 87 'constants_ia32.h', | 87 'constants_ia32.h', |
| 88 'constants_mips.h', | 88 'constants_mips.h', |
| 89 'constants_x64.h', | 89 'constants_x64.h', |
| 90 'coverage.cc', |
| 91 'coverage.h', |
| 90 'cpu.h', | 92 'cpu.h', |
| 91 'cpu_arm.cc', | 93 'cpu_arm.cc', |
| 92 'cpu_ia32.cc', | 94 'cpu_ia32.cc', |
| 93 'cpu_mips.cc', | 95 'cpu_mips.cc', |
| 94 'cpu_test.cc', | 96 'cpu_test.cc', |
| 95 'cpu_x64.cc', | 97 'cpu_x64.cc', |
| 96 'custom_isolate_test.cc', | 98 'custom_isolate_test.cc', |
| 97 'dart.cc', | 99 'dart.cc', |
| 98 'dart.h', | 100 'dart.h', |
| 99 'dart_api_impl.h', | 101 'dart_api_impl.h', |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 'visitor.h', | 347 'visitor.h', |
| 346 'vtune.cc', | 348 'vtune.cc', |
| 347 'vtune.h', | 349 'vtune.h', |
| 348 'weak_table.cc', | 350 'weak_table.cc', |
| 349 'weak_table.h', | 351 'weak_table.h', |
| 350 'zone.cc', | 352 'zone.cc', |
| 351 'zone.h', | 353 'zone.h', |
| 352 'zone_test.cc', | 354 'zone_test.cc', |
| 353 ], | 355 ], |
| 354 } | 356 } |
| OLD | NEW |