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

Unified Diff: sdk/BUILD.gn

Issue 2892223002: Fuchsia SDK: Also copy zlib to the SDK's bin directory (Closed)
Patch Set: Created 3 years, 7 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: sdk/BUILD.gn
diff --git a/sdk/BUILD.gn b/sdk/BUILD.gn
index 0f7d34ca83cb781686eff17473786bd1d1ceb1c3..c20555c2433027ecac1345b62bfe57d78e6329ff 100644
--- a/sdk/BUILD.gn
+++ b/sdk/BUILD.gn
@@ -69,15 +69,18 @@ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
deps = [
"//third_party/boringssl:crypto",
"//third_party/boringssl:ssl",
+ "//third_party/zlib",
]
crypto_out =
get_label_info("//third_party/boringssl:crypto", "root_out_dir")
crypto_name = get_label_info("//third_party/boringssl:crypto", "name")
ssl_out = get_label_info("//third_party/boringssl:ssl", "root_out_dir")
ssl_name = get_label_info("//third_party/boringssl:ssl", "name")
+ zlib_out = get_label_info("//third_party/zlib", "root_out_dir")
sources = [
"$crypto_out/lib${crypto_name}.so",
"$ssl_out/lib${ssl_name}.so",
+ "$zlib_out/libz.so",
]
outputs = [
"$root_out_dir/dart-sdk/bin/{{source_file_part}}",
« 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