| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 'pages.h', | 355 'pages.h', |
| 356 'pages_test.cc', | 356 'pages_test.cc', |
| 357 'parser.cc', | 357 'parser.cc', |
| 358 'parser.h', | 358 'parser.h', |
| 359 'parser_test.cc', | 359 'parser_test.cc', |
| 360 'port.cc', | 360 'port.cc', |
| 361 'port.h', | 361 'port.h', |
| 362 'port_test.cc', | 362 'port_test.cc', |
| 363 'precompiler.cc', | 363 'precompiler.cc', |
| 364 'precompiler.h', | 364 'precompiler.h', |
| 365 'kernel.h', |
| 366 'kernel.cc', |
| 367 'kernel_binary.cc', |
| 368 'kernel_to_il.cc', |
| 369 'kernel_to_il.h', |
| 370 'kernel_reader.h', |
| 371 'kernel_reader.cc', |
| 365 'proccpuinfo.cc', | 372 'proccpuinfo.cc', |
| 366 'proccpuinfo.h', | 373 'proccpuinfo.h', |
| 367 'profiler_service.cc', | 374 'profiler_service.cc', |
| 368 'profiler_service.h', | 375 'profiler_service.h', |
| 369 'profiler_test.cc', | 376 'profiler_test.cc', |
| 370 'profiler.cc', | 377 'profiler.cc', |
| 371 'profiler.h', | 378 'profiler.h', |
| 372 'random.cc', | 379 'random.cc', |
| 373 'random.h', | 380 'random.h', |
| 374 'raw_object.cc', | 381 'raw_object.cc', |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 'visitor.h', | 541 'visitor.h', |
| 535 'weak_code.cc', | 542 'weak_code.cc', |
| 536 'weak_code.h', | 543 'weak_code.h', |
| 537 'weak_table.cc', | 544 'weak_table.cc', |
| 538 'weak_table.h', | 545 'weak_table.h', |
| 539 'zone.cc', | 546 'zone.cc', |
| 540 'zone.h', | 547 'zone.h', |
| 541 'zone_test.cc', | 548 'zone_test.cc', |
| 542 ], | 549 ], |
| 543 } | 550 } |
| OLD | NEW |