| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'constants_x64.h', | 67 'constants_x64.h', |
| 68 'constants_arm.h', | 68 'constants_arm.h', |
| 69 'cpu.h', | 69 'cpu.h', |
| 70 'cpu_ia32.cc', | 70 'cpu_ia32.cc', |
| 71 'cpu_x64.cc', | 71 'cpu_x64.cc', |
| 72 'cpu_arm.cc', | 72 'cpu_arm.cc', |
| 73 'cpu_test.cc', | 73 'cpu_test.cc', |
| 74 'dart.cc', | 74 'dart.cc', |
| 75 'dart.h', | 75 'dart.h', |
| 76 'dart_api_impl.h', | 76 'dart_api_impl.h', |
| 77 'dart_api_state.cc', |
| 77 'dart_api_state.h', | 78 'dart_api_state.h', |
| 78 'dart_api_impl_test.cc', | 79 'dart_api_impl_test.cc', |
| 79 'dart_entry.cc', | 80 'dart_entry.cc', |
| 80 'dart_entry.h', | 81 'dart_entry.h', |
| 81 'dart_entry_test.cc', | 82 'dart_entry_test.cc', |
| 82 'disassembler.cc', | 83 'disassembler.cc', |
| 83 'disassembler.h', | 84 'disassembler.h', |
| 84 'disassembler_ia32.cc', | 85 'disassembler_ia32.cc', |
| 85 'disassembler_x64.cc', | 86 'disassembler_x64.cc', |
| 86 'disassembler_arm.cc', | 87 'disassembler_arm.cc', |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 'virtual_memory_test.cc', | 239 'virtual_memory_test.cc', |
| 239 'virtual_memory_win.cc', | 240 'virtual_memory_win.cc', |
| 240 'verifier.cc', | 241 'verifier.cc', |
| 241 'verifier.h', | 242 'verifier.h', |
| 242 'visitor.h', | 243 'visitor.h', |
| 243 'zone.cc', | 244 'zone.cc', |
| 244 'zone.h', | 245 'zone.h', |
| 245 'zone_test.cc', | 246 'zone_test.cc', |
| 246 ], | 247 ], |
| 247 } | 248 } |
| OLD | NEW |