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

Unified Diff: BUILD.gn

Issue 2720613004: [Fuchsia] Adds an option to create_sdk.py to skip binary stripping (Closed)
Patch Set: Rename flag no_strip -> disable_stripping Created 3 years, 10 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 | tools/create_sdk.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index d97f0a74ec7524547449c5105748904ce6a977c7..c592d7381c06292083cb0cd3685dd238b31849f1 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -137,6 +137,10 @@ action("create_sdk") {
if (defined(is_fuchsia) && is_fuchsia_host) {
args += [ "--copy_libs" ]
}
+ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
+ # The binaries are already stripped.
+ args += [ "--disable_stripping" ]
+ }
}
group("dart2js") {
« no previous file with comments | « no previous file | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698