| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'dart.h', | 83 'dart.h', |
| 84 'dart_api_impl.h', | 84 'dart_api_impl.h', |
| 85 'dart_api_state.cc', | 85 'dart_api_state.cc', |
| 86 'dart_api_state.h', | 86 'dart_api_state.h', |
| 87 'dart_api_impl_test.cc', | 87 'dart_api_impl_test.cc', |
| 88 'dart_entry.cc', | 88 'dart_entry.cc', |
| 89 'dart_entry.h', | 89 'dart_entry.h', |
| 90 'dart_entry_test.cc', | 90 'dart_entry_test.cc', |
| 91 'debugger.cc', | 91 'debugger.cc', |
| 92 'debugger.h', | 92 'debugger.h', |
| 93 'debugger_ia32.cc', |
| 94 'debugger_x64.cc', |
| 95 'debugger_arm.cc', |
| 93 'debugger_api_impl_test.cc', | 96 'debugger_api_impl_test.cc', |
| 94 'disassembler.cc', | 97 'disassembler.cc', |
| 95 'disassembler.h', | 98 'disassembler.h', |
| 96 'disassembler_ia32.cc', | 99 'disassembler_ia32.cc', |
| 97 'disassembler_x64.cc', | 100 'disassembler_x64.cc', |
| 98 'disassembler_arm.cc', | 101 'disassembler_arm.cc', |
| 99 'disassembler_test.cc', | 102 'disassembler_test.cc', |
| 100 'debuginfo.h', | 103 'debuginfo.h', |
| 101 'debuginfo_linux.cc', | 104 'debuginfo_linux.cc', |
| 102 'debuginfo_macos.cc', | 105 'debuginfo_macos.cc', |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'virtual_memory_test.cc', | 264 'virtual_memory_test.cc', |
| 262 'virtual_memory_win.cc', | 265 'virtual_memory_win.cc', |
| 263 'verifier.cc', | 266 'verifier.cc', |
| 264 'verifier.h', | 267 'verifier.h', |
| 265 'visitor.h', | 268 'visitor.h', |
| 266 'zone.cc', | 269 'zone.cc', |
| 267 'zone.h', | 270 'zone.h', |
| 268 'zone_test.cc', | 271 'zone_test.cc', |
| 269 ], | 272 ], |
| 270 } | 273 } |
| OLD | NEW |