| 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 config("libdart_vm_config") { | 5 config("libdart_vm_config") { |
| 6 if (defined(is_fuchsia) && is_fuchsia) { | 6 if (defined(is_fuchsia) && is_fuchsia) { |
| 7 libs = [ | 7 libs = [ |
| 8 "magenta", | 8 "magenta", |
| 9 "runtime", | |
| 10 ] | 9 ] |
| 11 } else if (is_win) { | 10 } else if (is_win) { |
| 12 libs = [ | 11 libs = [ |
| 13 "advapi32.lib", | 12 "advapi32.lib", |
| 14 "shell32.lib", | 13 "shell32.lib", |
| 15 "dbghelp.lib", | 14 "dbghelp.lib", |
| 16 ] | 15 ] |
| 17 } else { | 16 } else { |
| 18 libs = [ "dl" ] | 17 libs = [ "dl" ] |
| 19 if (!is_android) { | 18 if (!is_android) { |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 ["developer", "developer", true, "../../sdk/lib/developer", "../lib"], | 292 ["developer", "developer", true, "../../sdk/lib/developer", "../lib"], |
| 294 ["_internal", "internal", true, "../../sdk/lib/internal", "../lib"], | 293 ["_internal", "internal", true, "../../sdk/lib/internal", "../lib"], |
| 295 ["isolate", "isolate", true, "../../sdk/lib/isolate", "../lib"], | 294 ["isolate", "isolate", true, "../../sdk/lib/isolate", "../lib"], |
| 296 ["math", "math", true, "../../sdk/lib/math", "../lib"], | 295 ["math", "math", true, "../../sdk/lib/math", "../lib"], |
| 297 ["mirrors", "mirrors", true, "../../sdk/lib/mirrors", "../lib"], | 296 ["mirrors", "mirrors", true, "../../sdk/lib/mirrors", "../lib"], |
| 298 ["profiler", "profiler", false, "../../sdk/lib/profiler"], | 297 ["profiler", "profiler", false, "../../sdk/lib/profiler"], |
| 299 ["typed_data", "typed_data", false, "../lib"], | 298 ["typed_data", "typed_data", false, "../lib"], |
| 300 ["_vmservice", "vmservice", true, "../../sdk/lib/vmservice", "../lib"], | 299 ["_vmservice", "vmservice", true, "../../sdk/lib/vmservice", "../lib"], |
| 301 ] | 300 ] |
| 302 } | 301 } |
| OLD | NEW |