| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 'timer.cc', | 244 'timer.cc', |
| 245 'timer.h', | 245 'timer.h', |
| 246 'token.cc', | 246 'token.cc', |
| 247 'token.h', | 247 'token.h', |
| 248 'unicode.cc', | 248 'unicode.cc', |
| 249 'unicode.h', | 249 'unicode.h', |
| 250 'unicode_data.cc', | 250 'unicode_data.cc', |
| 251 'unicode_test.cc', | 251 'unicode_test.cc', |
| 252 'unit_test.cc', | 252 'unit_test.cc', |
| 253 'unit_test.h', | 253 'unit_test.h', |
| 254 'utils.cc', | |
| 255 'utils.h', | |
| 256 'utils_test.cc', | 254 'utils_test.cc', |
| 257 'virtual_memory.cc', | 255 'virtual_memory.cc', |
| 258 'virtual_memory.h', | 256 'virtual_memory.h', |
| 259 'virtual_memory_linux.cc', | 257 'virtual_memory_linux.cc', |
| 260 'virtual_memory_macos.cc', | 258 'virtual_memory_macos.cc', |
| 261 'virtual_memory_test.cc', | 259 'virtual_memory_test.cc', |
| 262 'virtual_memory_win.cc', | 260 'virtual_memory_win.cc', |
| 263 'verifier.cc', | 261 'verifier.cc', |
| 264 'verifier.h', | 262 'verifier.h', |
| 265 'visitor.h', | 263 'visitor.h', |
| 266 'zone.cc', | 264 'zone.cc', |
| 267 'zone.h', | 265 'zone.h', |
| 268 'zone_test.cc', | 266 'zone_test.cc', |
| 269 ], | 267 ], |
| 270 } | 268 } |
| OLD | NEW |