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

Unified Diff: runtime/bin/BUILD.gn

Issue 2563463002: Fuchsia: dart:io Processes (Closed)
Patch Set: Add const 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') | runtime/bin/process_fuchsia.cc » ('J')
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..e95264fffc7a3f91d4e58fa3f444de047121f259 100644
--- a/runtime/bin/BUILD.gn
+++ b/runtime/bin/BUILD.gn
@@ -333,6 +333,12 @@ 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 +436,12 @@ 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 +627,12 @@ 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') | runtime/bin/process_fuchsia.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698