| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 import("../../build/executable_suffix.gni") | 5 import("../../build/executable_suffix.gni") |
| 6 import("../../build/prebuilt_dart_sdk.gni") | 6 import("../../build/prebuilt_dart_sdk.gni") |
| 7 import("gypi_contents.gni") | 7 import("gypi_contents.gni") |
| 8 | 8 |
| 9 config("libdart_vm_config") { | 9 config("libdart_vm_config") { |
| 10 if (defined(is_fuchsia) && is_fuchsia) { | 10 if (defined(is_fuchsia) && is_fuchsia) { |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 "mirrors", | 513 "mirrors", |
| 514 processed_gypis.mirrors_runtime_sources, | 514 processed_gypis.mirrors_runtime_sources, |
| 515 "../lib", | 515 "../lib", |
| 516 ], | 516 ], |
| 517 [ | 517 [ |
| 518 "profiler", | 518 "profiler", |
| 519 processed_gypis.profiler_runtime_sources, | 519 processed_gypis.profiler_runtime_sources, |
| 520 "../lib", | 520 "../lib", |
| 521 ], | 521 ], |
| 522 [ | 522 [ |
| 523 "typed_data", |
| 524 processed_gypis.typed_data_runtime_sources, |
| 525 "../lib", |
| 526 ], |
| 527 [ |
| 523 "vmservice", | 528 "vmservice", |
| 524 processed_gypis.vmservice_runtime_sources, | 529 processed_gypis.vmservice_runtime_sources, |
| 525 "../lib", | 530 "../lib", |
| 526 ], | 531 ], |
| 527 [ | 532 [ |
| 528 "io", | 533 "io", |
| 529 processed_gypis.bin_io_sources, | 534 processed_gypis.bin_io_sources, |
| 530 "../bin", | 535 "../bin", |
| 531 ], | 536 ], |
| 532 ] | 537 ] |
| 533 } | 538 } |
| OLD | NEW |