| 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 'port.cc', | 371 'port.cc', |
| 372 'port.h', | 372 'port.h', |
| 373 'port_test.cc', | 373 'port_test.cc', |
| 374 'precompiler.cc', | 374 'precompiler.cc', |
| 375 'precompiler.h', | 375 'precompiler.h', |
| 376 'program_visitor.cc', | 376 'program_visitor.cc', |
| 377 'program_visitor.h', | 377 'program_visitor.h', |
| 378 'kernel.h', | 378 'kernel.h', |
| 379 'kernel.cc', | 379 'kernel.cc', |
| 380 'kernel_binary.cc', | 380 'kernel_binary.cc', |
| 381 'kernel_binary.h', |
| 382 'kernel_binary_flowgraph.cc', |
| 383 'kernel_binary_flowgraph.h', |
| 381 'kernel_to_il.cc', | 384 'kernel_to_il.cc', |
| 382 'kernel_to_il.h', | 385 'kernel_to_il.h', |
| 383 'kernel_reader.h', | 386 'kernel_reader.h', |
| 384 'kernel_reader.cc', | 387 'kernel_reader.cc', |
| 385 'proccpuinfo.cc', | 388 'proccpuinfo.cc', |
| 386 'proccpuinfo.h', | 389 'proccpuinfo.h', |
| 387 'profiler_service.cc', | 390 'profiler_service.cc', |
| 388 'profiler_service.h', | 391 'profiler_service.h', |
| 389 'profiler_test.cc', | 392 'profiler_test.cc', |
| 390 'profiler.cc', | 393 'profiler.cc', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 'weak_code.h', | 561 'weak_code.h', |
| 559 'weak_table.cc', | 562 'weak_table.cc', |
| 560 'weak_table.h', | 563 'weak_table.h', |
| 561 'zone.cc', | 564 'zone.cc', |
| 562 'zone.h', | 565 'zone.h', |
| 563 'zone_test.cc', | 566 'zone_test.cc', |
| 564 'zone_text_buffer.cc', | 567 'zone_text_buffer.cc', |
| 565 'zone_text_buffer.h', | 568 'zone_text_buffer.h', |
| 566 ], | 569 ], |
| 567 } | 570 } |
| OLD | NEW |