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

Unified Diff: runtime/bin/BUILD.gn

Issue 2797253003: Declare dependency from dart_io targets to zlib (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | 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 fd47d214c87343a9efcd7de3fde711e5a51ba4f3..b3fc97bdf75fcec876fb3431b80033ab89a03314 100644
--- a/runtime/bin/BUILD.gn
+++ b/runtime/bin/BUILD.gn
@@ -404,6 +404,9 @@ template("dart_io") {
set_sources_assignment_filter(custom_sources_filter)
defines = []
+ deps = [
+ "$dart_zlib_path",
+ ]
if (is_mac || is_ios) {
libs = [
"CoreFoundation.framework",
@@ -414,7 +417,7 @@ template("dart_io") {
libs += [ "CoreServices.framework" ]
}
} else {
- deps = [
+ deps += [
"//third_party/boringssl",
]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698