| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 'native_symbol_macos.cc', | 247 'native_symbol_macos.cc', |
| 248 'native_symbol_win.cc', | 248 'native_symbol_win.cc', |
| 249 'object.cc', | 249 'object.cc', |
| 250 'object.h', | 250 'object.h', |
| 251 'object_arm_test.cc', | 251 'object_arm_test.cc', |
| 252 'object_ia32_test.cc', | 252 'object_ia32_test.cc', |
| 253 'object_id_ring.cc', | 253 'object_id_ring.cc', |
| 254 'object_id_ring.h', | 254 'object_id_ring.h', |
| 255 'object_id_ring_test.cc', | 255 'object_id_ring_test.cc', |
| 256 'object_mips_test.cc', | 256 'object_mips_test.cc', |
| 257 'object_set.h', |
| 257 'object_store.cc', | 258 'object_store.cc', |
| 258 'object_store.h', | 259 'object_store.h', |
| 259 'object_store_test.cc', | 260 'object_store_test.cc', |
| 260 'object_test.cc', | 261 'object_test.cc', |
| 261 'object_x64_test.cc', | 262 'object_x64_test.cc', |
| 262 'os.h', | 263 'os.h', |
| 263 'os_android.cc', | 264 'os_android.cc', |
| 264 'os_linux.cc', | 265 'os_linux.cc', |
| 265 'os_macos.cc', | 266 'os_macos.cc', |
| 266 'os_test.cc', | 267 'os_test.cc', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 'visitor.h', | 373 'visitor.h', |
| 373 'vtune.cc', | 374 'vtune.cc', |
| 374 'vtune.h', | 375 'vtune.h', |
| 375 'weak_table.cc', | 376 'weak_table.cc', |
| 376 'weak_table.h', | 377 'weak_table.h', |
| 377 'zone.cc', | 378 'zone.cc', |
| 378 'zone.h', | 379 'zone.h', |
| 379 'zone_test.cc', | 380 'zone_test.cc', |
| 380 ], | 381 ], |
| 381 } | 382 } |
| OLD | NEW |