| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 'intrinsifier_mips.cc', | 262 'intrinsifier_mips.cc', |
| 263 'intrinsifier_x64.cc', | 263 'intrinsifier_x64.cc', |
| 264 'isolate.cc', | 264 'isolate.cc', |
| 265 'isolate.h', | 265 'isolate.h', |
| 266 'isolate_reload.cc', | 266 'isolate_reload.cc', |
| 267 'isolate_reload.h', | 267 'isolate_reload.h', |
| 268 'isolate_reload_test.cc', | 268 'isolate_reload_test.cc', |
| 269 'isolate_test.cc', | 269 'isolate_test.cc', |
| 270 'jit_optimizer.cc', | 270 'jit_optimizer.cc', |
| 271 'jit_optimizer.h', | 271 'jit_optimizer.h', |
| 272 'json_parser.h', |
| 272 'json_stream.h', | 273 'json_stream.h', |
| 273 'json_stream.cc', | 274 'json_stream.cc', |
| 274 'json_test.cc', | 275 'json_test.cc', |
| 275 'kernel_isolate.cc', | 276 'kernel_isolate.cc', |
| 276 'kernel_isolate.h', | 277 'kernel_isolate.h', |
| 277 'locations.cc', | 278 'locations.cc', |
| 278 'locations.h', | 279 'locations.h', |
| 279 'lockers.cc', | 280 'lockers.cc', |
| 280 'lockers.h', | 281 'lockers.h', |
| 281 'log_test.cc', | 282 'log_test.cc', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 'pages.h', | 358 'pages.h', |
| 358 'pages_test.cc', | 359 'pages_test.cc', |
| 359 'parser.cc', | 360 'parser.cc', |
| 360 'parser.h', | 361 'parser.h', |
| 361 'parser_test.cc', | 362 'parser_test.cc', |
| 362 'port.cc', | 363 'port.cc', |
| 363 'port.h', | 364 'port.h', |
| 364 'port_test.cc', | 365 'port_test.cc', |
| 365 'precompiler.cc', | 366 'precompiler.cc', |
| 366 'precompiler.h', | 367 'precompiler.h', |
| 368 'program_visitor.cc', |
| 369 'program_visitor.h', |
| 367 'kernel.h', | 370 'kernel.h', |
| 368 'kernel.cc', | 371 'kernel.cc', |
| 369 'kernel_binary.cc', | 372 'kernel_binary.cc', |
| 370 'kernel_to_il.cc', | 373 'kernel_to_il.cc', |
| 371 'kernel_to_il.h', | 374 'kernel_to_il.h', |
| 372 'kernel_reader.h', | 375 'kernel_reader.h', |
| 373 'kernel_reader.cc', | 376 'kernel_reader.cc', |
| 374 'proccpuinfo.cc', | 377 'proccpuinfo.cc', |
| 375 'proccpuinfo.h', | 378 'proccpuinfo.h', |
| 376 'profiler_service.cc', | 379 'profiler_service.cc', |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 'visitor.h', | 546 'visitor.h', |
| 544 'weak_code.cc', | 547 'weak_code.cc', |
| 545 'weak_code.h', | 548 'weak_code.h', |
| 546 'weak_table.cc', | 549 'weak_table.cc', |
| 547 'weak_table.h', | 550 'weak_table.h', |
| 548 'zone.cc', | 551 'zone.cc', |
| 549 'zone.h', | 552 'zone.h', |
| 550 'zone_test.cc', | 553 'zone_test.cc', |
| 551 ], | 554 ], |
| 552 } | 555 } |
| OLD | NEW |