Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1178)

Side by Side Diff: runtime/vm/BUILD.gn

Issue 2428373005: Remove dependency on Fuchsia's runtime library. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/run_vm_tests_fuchsia.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « runtime/bin/run_vm_tests_fuchsia.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698