| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 'port.cc', | 376 'port.cc', |
| 377 'port.h', | 377 'port.h', |
| 378 'port_test.cc', | 378 'port_test.cc', |
| 379 'precompiler.cc', | 379 'precompiler.cc', |
| 380 'precompiler.h', | 380 'precompiler.h', |
| 381 'program_visitor.cc', | 381 'program_visitor.cc', |
| 382 'program_visitor.h', | 382 'program_visitor.h', |
| 383 'kernel.h', | 383 'kernel.h', |
| 384 'kernel.cc', | 384 'kernel.cc', |
| 385 'kernel_binary.cc', | 385 'kernel_binary.cc', |
| 386 'kernel_binary.h', |
| 387 'kernel_binary_flowgraph.cc', |
| 388 'kernel_binary_flowgraph.h', |
| 386 'kernel_to_il.cc', | 389 'kernel_to_il.cc', |
| 387 'kernel_to_il.h', | 390 'kernel_to_il.h', |
| 388 'kernel_reader.h', | 391 'kernel_reader.h', |
| 389 'kernel_reader.cc', | 392 'kernel_reader.cc', |
| 390 'proccpuinfo.cc', | 393 'proccpuinfo.cc', |
| 391 'proccpuinfo.h', | 394 'proccpuinfo.h', |
| 392 'profiler_service.cc', | 395 'profiler_service.cc', |
| 393 'profiler_service.h', | 396 'profiler_service.h', |
| 394 'profiler_test.cc', | 397 'profiler_test.cc', |
| 395 'profiler.cc', | 398 'profiler.cc', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 'weak_code.h', | 566 'weak_code.h', |
| 564 'weak_table.cc', | 567 'weak_table.cc', |
| 565 'weak_table.h', | 568 'weak_table.h', |
| 566 'zone.cc', | 569 'zone.cc', |
| 567 'zone.h', | 570 'zone.h', |
| 568 'zone_test.cc', | 571 'zone_test.cc', |
| 569 'zone_text_buffer.cc', | 572 'zone_text_buffer.cc', |
| 570 'zone_text_buffer.h', | 573 'zone_text_buffer.h', |
| 571 ], | 574 ], |
| 572 } | 575 } |
| OLD | NEW |