| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 'thread_macos.h', | 217 'thread_macos.h', |
| 218 'thread_test.cc', | 218 'thread_test.cc', |
| 219 'thread_win.cc', | 219 'thread_win.cc', |
| 220 'thread_win.h', | 220 'thread_win.h', |
| 221 'timer.cc', | 221 'timer.cc', |
| 222 'timer.h', | 222 'timer.h', |
| 223 'token.cc', | 223 'token.cc', |
| 224 'token.h', | 224 'token.h', |
| 225 'unicode.cc', | 225 'unicode.cc', |
| 226 'unicode.h', | 226 'unicode.h', |
| 227 'unicode_data.cc', |
| 227 'unicode_test.cc', | 228 'unicode_test.cc', |
| 228 'unit_test.cc', | 229 'unit_test.cc', |
| 229 'unit_test.h', | 230 'unit_test.h', |
| 230 'utils.cc', | 231 'utils.cc', |
| 231 'utils.h', | 232 'utils.h', |
| 232 'utils_test.cc', | 233 'utils_test.cc', |
| 233 'virtual_memory.cc', | 234 'virtual_memory.cc', |
| 234 'virtual_memory.h', | 235 'virtual_memory.h', |
| 235 'virtual_memory_linux.cc', | 236 'virtual_memory_linux.cc', |
| 236 'virtual_memory_macos.cc', | 237 'virtual_memory_macos.cc', |
| 237 'virtual_memory_test.cc', | 238 'virtual_memory_test.cc', |
| 238 'virtual_memory_win.cc', | 239 'virtual_memory_win.cc', |
| 239 'verifier.cc', | 240 'verifier.cc', |
| 240 'verifier.h', | 241 'verifier.h', |
| 241 'visitor.h', | 242 'visitor.h', |
| 242 'zone.cc', | 243 'zone.cc', |
| 243 'zone.h', | 244 'zone.h', |
| 244 'zone_test.cc', | 245 'zone_test.cc', |
| 245 ], | 246 ], |
| 246 } | 247 } |
| OLD | NEW |