| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 'pages.h', | 330 'pages.h', |
| 331 'pages_test.cc', | 331 'pages_test.cc', |
| 332 'parser.cc', | 332 'parser.cc', |
| 333 'parser.h', | 333 'parser.h', |
| 334 'parser_test.cc', | 334 'parser_test.cc', |
| 335 'port.cc', | 335 'port.cc', |
| 336 'port.h', | 336 'port.h', |
| 337 'port_test.cc', | 337 'port_test.cc', |
| 338 'proccpuinfo.h', | 338 'proccpuinfo.h', |
| 339 'proccpuinfo.cc', | 339 'proccpuinfo.cc', |
| 340 'profiler_service.cc', |
| 341 'profiler_service.h', |
| 342 'profiler_test.cc', |
| 340 'profiler.cc', | 343 'profiler.cc', |
| 341 'profiler.h', | 344 'profiler.h', |
| 342 'profiler_test.cc', | |
| 343 'random.cc', | 345 'random.cc', |
| 344 'random.h', | 346 'random.h', |
| 345 'raw_object.cc', | 347 'raw_object.cc', |
| 346 'raw_object.h', | 348 'raw_object.h', |
| 347 'raw_object_snapshot.cc', | 349 'raw_object_snapshot.cc', |
| 348 'regexp.cc', | 350 'regexp.cc', |
| 349 'regexp.h', | 351 'regexp.h', |
| 350 'regexp_assembler.cc', | 352 'regexp_assembler.cc', |
| 351 'regexp_assembler.h', | 353 'regexp_assembler.h', |
| 352 'regexp_ast.cc', | 354 'regexp_ast.cc', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 369 'runtime_entry_ia32.cc', | 371 'runtime_entry_ia32.cc', |
| 370 'runtime_entry_mips.cc', | 372 'runtime_entry_mips.cc', |
| 371 'runtime_entry_test.cc', | 373 'runtime_entry_test.cc', |
| 372 'runtime_entry_x64.cc', | 374 'runtime_entry_x64.cc', |
| 373 'scanner.cc', | 375 'scanner.cc', |
| 374 'scanner.h', | 376 'scanner.h', |
| 375 'scanner_test.cc', | 377 'scanner_test.cc', |
| 376 'scavenger.cc', | 378 'scavenger.cc', |
| 377 'scavenger.h', | 379 'scavenger.h', |
| 378 'scavenger_test.cc', | 380 'scavenger_test.cc', |
| 381 'scope_timer.h', |
| 379 'scopes.cc', | 382 'scopes.cc', |
| 380 'scopes.h', | 383 'scopes.h', |
| 381 'scopes_test.cc', | 384 'scopes_test.cc', |
| 382 'service.cc', | 385 'service.cc', |
| 383 'service_test.cc', | 386 'service_test.cc', |
| 384 'service.h', | 387 'service.h', |
| 385 'signal_handler_android.cc', | 388 'signal_handler_android.cc', |
| 386 'signal_handler_linux.cc', | 389 'signal_handler_linux.cc', |
| 387 'signal_handler_macos.cc', | 390 'signal_handler_macos.cc', |
| 388 'signal_handler_win.cc', | 391 'signal_handler_win.cc', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 'vtune.h', | 474 'vtune.h', |
| 472 'weak_code.cc', | 475 'weak_code.cc', |
| 473 'weak_code.h', | 476 'weak_code.h', |
| 474 'weak_table.cc', | 477 'weak_table.cc', |
| 475 'weak_table.h', | 478 'weak_table.h', |
| 476 'zone.cc', | 479 'zone.cc', |
| 477 'zone.h', | 480 'zone.h', |
| 478 'zone_test.cc', | 481 'zone_test.cc', |
| 479 ], | 482 ], |
| 480 } | 483 } |
| OLD | NEW |