| 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 import("../runtime_args.gni") |
| 8 | 9 |
| 9 config("libdart_vm_config") { | 10 config("libdart_vm_config") { |
| 10 if (defined(is_fuchsia) && is_fuchsia) { | 11 if (defined(is_fuchsia) && is_fuchsia) { |
| 11 libs = [ "magenta" ] | 12 libs = [ "magenta" ] |
| 12 } else if (is_win) { | 13 } else if (is_win) { |
| 13 libs = [ | 14 libs = [ |
| 14 "advapi32.lib", | 15 "advapi32.lib", |
| 15 "shell32.lib", | 16 "shell32.lib", |
| 16 "dbghelp.lib", | 17 "dbghelp.lib", |
| 17 ] | 18 ] |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 processed_gypis.vmservice_runtime_sources, | 530 processed_gypis.vmservice_runtime_sources, |
| 530 "../lib", | 531 "../lib", |
| 531 ], | 532 ], |
| 532 [ | 533 [ |
| 533 "io", | 534 "io", |
| 534 processed_gypis.bin_io_sources, | 535 processed_gypis.bin_io_sources, |
| 535 "../bin", | 536 "../bin", |
| 536 ], | 537 ], |
| 537 ] | 538 ] |
| 538 } | 539 } |
| OLD | NEW |