| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 'stack_frame_test.cc', | 254 'stack_frame_test.cc', |
| 255 'store_buffer.cc', | 255 'store_buffer.cc', |
| 256 'store_buffer.h', | 256 'store_buffer.h', |
| 257 'stub_code.cc', | 257 'stub_code.cc', |
| 258 'stub_code.h', | 258 'stub_code.h', |
| 259 'stub_code_arm.cc', | 259 'stub_code_arm.cc', |
| 260 'stub_code_ia32.cc', | 260 'stub_code_ia32.cc', |
| 261 'stub_code_ia32_test.cc', | 261 'stub_code_ia32_test.cc', |
| 262 'stub_code_x64.cc', | 262 'stub_code_x64.cc', |
| 263 'stub_code_x64_test.cc', | 263 'stub_code_x64_test.cc', |
| 264 'symbols.cc', |
| 265 'symbols.h', |
| 264 'thread.h', | 266 'thread.h', |
| 265 'thread_test.cc', | 267 'thread_test.cc', |
| 266 'thread_pool.cc', | 268 'thread_pool.cc', |
| 267 'thread_pool.h', | 269 'thread_pool.h', |
| 268 'thread_pool_test.cc', | 270 'thread_pool_test.cc', |
| 269 'timer.cc', | 271 'timer.cc', |
| 270 'timer.h', | 272 'timer.h', |
| 271 'token.cc', | 273 'token.cc', |
| 272 'token.h', | 274 'token.h', |
| 273 'unicode.cc', | 275 'unicode.cc', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 284 'virtual_memory_test.cc', | 286 'virtual_memory_test.cc', |
| 285 'virtual_memory_win.cc', | 287 'virtual_memory_win.cc', |
| 286 'verifier.cc', | 288 'verifier.cc', |
| 287 'verifier.h', | 289 'verifier.h', |
| 288 'visitor.h', | 290 'visitor.h', |
| 289 'zone.cc', | 291 'zone.cc', |
| 290 'zone.h', | 292 'zone.h', |
| 291 'zone_test.cc', | 293 'zone_test.cc', |
| 292 ], | 294 ], |
| 293 } | 295 } |
| OLD | NEW |