| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 'trace_buffer.cc', | 428 'trace_buffer.cc', |
| 429 'trace_buffer.h', | 429 'trace_buffer.h', |
| 430 'trace_buffer_test.cc', | 430 'trace_buffer_test.cc', |
| 431 'unicode.cc', | 431 'unicode.cc', |
| 432 'unicode.h', | 432 'unicode.h', |
| 433 'unicode_data.cc', | 433 'unicode_data.cc', |
| 434 'unicode_test.cc', | 434 'unicode_test.cc', |
| 435 'unit_test.cc', | 435 'unit_test.cc', |
| 436 'unit_test.h', | 436 'unit_test.h', |
| 437 'utils_test.cc', | 437 'utils_test.cc', |
| 438 'verified_memory.cc', |
| 439 'verified_memory.h', |
| 440 'verified_memory_test.cc', |
| 438 'verifier.cc', | 441 'verifier.cc', |
| 439 'verifier.h', | 442 'verifier.h', |
| 440 'virtual_memory.cc', | 443 'virtual_memory.cc', |
| 441 'virtual_memory.h', | 444 'virtual_memory.h', |
| 442 'virtual_memory_android.cc', | 445 'virtual_memory_android.cc', |
| 443 'virtual_memory_linux.cc', | 446 'virtual_memory_linux.cc', |
| 444 'virtual_memory_macos.cc', | 447 'virtual_memory_macos.cc', |
| 445 'virtual_memory_test.cc', | 448 'virtual_memory_test.cc', |
| 446 'virtual_memory_win.cc', | 449 'virtual_memory_win.cc', |
| 447 'visitor.h', | 450 'visitor.h', |
| 448 'vtune.cc', | 451 'vtune.cc', |
| 449 'vtune.h', | 452 'vtune.h', |
| 450 'weak_code.cc', | 453 'weak_code.cc', |
| 451 'weak_code.h', | 454 'weak_code.h', |
| 452 'weak_table.cc', | 455 'weak_table.cc', |
| 453 'weak_table.h', | 456 'weak_table.h', |
| 454 'zone.cc', | 457 'zone.cc', |
| 455 'zone.h', | 458 'zone.h', |
| 456 'zone_test.cc', | 459 'zone_test.cc', |
| 457 ], | 460 ], |
| 458 } | 461 } |
| OLD | NEW |