| 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("../../utils/generate_patch_sdk.gni") | 7 import("../../utils/generate_patch_sdk.gni") |
| 8 import("gypi_contents.gni") | 8 import("gypi_contents.gni") |
| 9 import("../runtime_args.gni") | 9 import("../runtime_args.gni") |
| 10 | 10 |
| 11 config("libdart_vm_config") { | 11 config("libdart_vm_config") { |
| 12 if (defined(is_fuchsia) && is_fuchsia) { | 12 if (is_fuchsia) { |
| 13 libs = [ "magenta" ] | 13 libs = [ "magenta" ] |
| 14 } else if (is_win) { | 14 } else if (is_win) { |
| 15 libs = [ | 15 libs = [ |
| 16 "advapi32.lib", | 16 "advapi32.lib", |
| 17 "shell32.lib", | 17 "shell32.lib", |
| 18 "dbghelp.lib", | 18 "dbghelp.lib", |
| 19 ] | 19 ] |
| 20 } else { | 20 } else { |
| 21 libs = [ "dl" ] | 21 libs = [ "dl" ] |
| 22 if (!is_android) { | 22 if (!is_android) { |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 processed_gypis.vmservice_runtime_sources, | 471 processed_gypis.vmservice_runtime_sources, |
| 472 "../lib", | 472 "../lib", |
| 473 ], | 473 ], |
| 474 [ | 474 [ |
| 475 "io", | 475 "io", |
| 476 processed_gypis.bin_io_sources, | 476 processed_gypis.bin_io_sources, |
| 477 "../bin", | 477 "../bin", |
| 478 ], | 478 ], |
| 479 ] | 479 ] |
| 480 } | 480 } |
| OLD | NEW |