| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'constants_mips.h', | 93 'constants_mips.h', |
| 94 'constants_x64.h', | 94 'constants_x64.h', |
| 95 'coverage.cc', | 95 'coverage.cc', |
| 96 'coverage.h', | 96 'coverage.h', |
| 97 'cpu.h', | 97 'cpu.h', |
| 98 'cpu_arm.cc', | 98 'cpu_arm.cc', |
| 99 'cpu_ia32.cc', | 99 'cpu_ia32.cc', |
| 100 'cpu_mips.cc', | 100 'cpu_mips.cc', |
| 101 'cpu_test.cc', | 101 'cpu_test.cc', |
| 102 'cpu_x64.cc', | 102 'cpu_x64.cc', |
| 103 'cpuid.h', |
| 104 'cpuid.cc', |
| 105 'cpuinfo.h', |
| 106 'cpuinfo_android.cc', |
| 107 'cpuinfo_linux.cc', |
| 108 'cpuinfo_macos.cc', |
| 109 'cpuinfo_test.cc', |
| 110 'cpuinfo_win.cc', |
| 103 'custom_isolate_test.cc', | 111 'custom_isolate_test.cc', |
| 104 'dart.cc', | 112 'dart.cc', |
| 105 'dart.h', | 113 'dart.h', |
| 106 'dart_api_impl.h', | 114 'dart_api_impl.h', |
| 107 'dart_api_impl_test.cc', | 115 'dart_api_impl_test.cc', |
| 108 'dart_api_message.cc', | 116 'dart_api_message.cc', |
| 109 'dart_api_message.h', | 117 'dart_api_message.h', |
| 110 'dart_api_state.h', | 118 'dart_api_state.h', |
| 111 'dart_entry.cc', | 119 'dart_entry.cc', |
| 112 'dart_entry.h', | 120 'dart_entry.h', |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'os_win.cc', | 279 'os_win.cc', |
| 272 'pages.cc', | 280 'pages.cc', |
| 273 'pages.h', | 281 'pages.h', |
| 274 'pages_test.cc', | 282 'pages_test.cc', |
| 275 'parser.cc', | 283 'parser.cc', |
| 276 'parser.h', | 284 'parser.h', |
| 277 'parser_test.cc', | 285 'parser_test.cc', |
| 278 'port.cc', | 286 'port.cc', |
| 279 'port.h', | 287 'port.h', |
| 280 'port_test.cc', | 288 'port_test.cc', |
| 289 'proccpuinfo.h', |
| 290 'proccpuinfo.cc', |
| 281 'profiler.cc', | 291 'profiler.cc', |
| 282 'profiler.h', | 292 'profiler.h', |
| 283 'profiler_test.cc', | 293 'profiler_test.cc', |
| 284 'random.cc', | 294 'random.cc', |
| 285 'random.h', | 295 'random.h', |
| 286 'raw_object.cc', | 296 'raw_object.cc', |
| 287 'raw_object.h', | 297 'raw_object.h', |
| 288 'raw_object_snapshot.cc', | 298 'raw_object_snapshot.cc', |
| 289 'resolver.cc', | 299 'resolver.cc', |
| 290 'resolver.h', | 300 'resolver.h', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 'visitor.h', | 390 'visitor.h', |
| 381 'vtune.cc', | 391 'vtune.cc', |
| 382 'vtune.h', | 392 'vtune.h', |
| 383 'weak_table.cc', | 393 'weak_table.cc', |
| 384 'weak_table.h', | 394 'weak_table.h', |
| 385 'zone.cc', | 395 'zone.cc', |
| 386 'zone.h', | 396 'zone.h', |
| 387 'zone_test.cc', | 397 'zone_test.cc', |
| 388 ], | 398 ], |
| 389 } | 399 } |
| OLD | NEW |