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

Unified Diff: runtime/bin/BUILD.gn

Issue 2563463002: Fuchsia: dart:io Processes (Closed)
Patch Set: Format Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/fdutils_fuchsia.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/BUILD.gn
diff --git a/runtime/bin/BUILD.gn b/runtime/bin/BUILD.gn
index 495d1176725dab7fb4d5743b4a93f7ca69c250c7..95cf0dc94c6fb5d4b3b3e22a89b46b6e813ce5f2 100644
--- a/runtime/bin/BUILD.gn
+++ b/runtime/bin/BUILD.gn
@@ -333,6 +333,10 @@ executable("gen_snapshot") {
"winmm.lib",
]
}
+
+ if (defined(is_fuchsia) && is_fuchsia) {
+ libs = [ "launchpad" ]
+ }
}
# A source set for the implementation of 'dart:io' library
@@ -430,6 +434,10 @@ template("dart_io") {
]
}
+ if (defined(is_fuchsia) && is_fuchsia) {
+ libs = [ "launchpad" ]
+ }
+
sources = io_impl_sources_gypi + builtin_impl_sources_gypi
sources += [
"builtin_natives.cc",
@@ -615,6 +623,10 @@ template("dart_executable") {
"winmm.lib",
]
}
+
+ if (defined(is_fuchsia) && is_fuchsia) {
+ libs = [ "launchpad" ]
+ }
}
}
« no previous file with comments | « no previous file | runtime/bin/fdutils_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698