| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 'simulator_arm.cc', | 279 'simulator_arm.cc', |
| 280 'simulator_arm.h', | 280 'simulator_arm.h', |
| 281 'simulator_mips.cc', | 281 'simulator_mips.cc', |
| 282 'simulator_mips.h', | 282 'simulator_mips.h', |
| 283 'snapshot.cc', | 283 'snapshot.cc', |
| 284 'snapshot.h', | 284 'snapshot.h', |
| 285 'snapshot_ids.h', | 285 'snapshot_ids.h', |
| 286 'snapshot_test.cc', | 286 'snapshot_test.cc', |
| 287 'stack_frame.cc', | 287 'stack_frame.cc', |
| 288 'stack_frame.h', | 288 'stack_frame.h', |
| 289 'stack_frame_arm.cc', | |
| 290 'stack_frame_arm.h', | 289 'stack_frame_arm.h', |
| 291 'stack_frame_ia32.cc', | |
| 292 'stack_frame_ia32.h', | 290 'stack_frame_ia32.h', |
| 293 'stack_frame_mips.cc', | |
| 294 'stack_frame_mips.h', | 291 'stack_frame_mips.h', |
| 295 'stack_frame_test.cc', | 292 'stack_frame_test.cc', |
| 296 'stack_frame_x64.cc', | |
| 297 'stack_frame_x64.h', | 293 'stack_frame_x64.h', |
| 298 'store_buffer.cc', | 294 'store_buffer.cc', |
| 299 'store_buffer.h', | 295 'store_buffer.h', |
| 300 'stub_code.cc', | 296 'stub_code.cc', |
| 301 'stub_code.h', | 297 'stub_code.h', |
| 302 'stub_code_arm.cc', | 298 'stub_code_arm.cc', |
| 303 'stub_code_arm_test.cc', | 299 'stub_code_arm_test.cc', |
| 304 'stub_code_ia32.cc', | 300 'stub_code_ia32.cc', |
| 305 'stub_code_ia32_test.cc', | 301 'stub_code_ia32_test.cc', |
| 306 'stub_code_mips.cc', | 302 'stub_code_mips.cc', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 335 'virtual_memory_test.cc', | 331 'virtual_memory_test.cc', |
| 336 'virtual_memory_win.cc', | 332 'virtual_memory_win.cc', |
| 337 'visitor.h', | 333 'visitor.h', |
| 338 'vtune.cc', | 334 'vtune.cc', |
| 339 'vtune.h', | 335 'vtune.h', |
| 340 'zone.cc', | 336 'zone.cc', |
| 341 'zone.h', | 337 'zone.h', |
| 342 'zone_test.cc', | 338 'zone_test.cc', |
| 343 ], | 339 ], |
| 344 } | 340 } |
| OLD | NEW |