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

Unified Diff: gn/BUILD.gn

Issue 2231833002: Roll GN: gn format is --in-place by default (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add a link pool Created 4 years, 4 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 | « PRESUBMIT.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gn/BUILD.gn
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 48bd90f639ec7fcec227c2327180f787edf56f1f..1f7bd82bf2cf15cd8762c2b2bd501407b5911251 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -54,6 +54,10 @@ config("executable") {
}
}
+pool("link_pool") {
+ depth = 0 #unlimited
+}
+
toolchain("gcc_like") {
lib_switch = "-l"
lib_dir_switch = "-L"
@@ -113,6 +117,7 @@ toolchain("gcc_like") {
output_prefix = "lib"
default_output_extension = ".so"
description = "$cxx -shared ... -o {{output}}"
+ pool = ":link_pool"
}
tool("link") {
@@ -121,6 +126,7 @@ toolchain("gcc_like") {
"{{root_out_dir}}/{{target_output_name}}{{output_extension}}",
]
description = "$cxx ... -o {{output}}"
+ pool = ":link_pool"
}
tool("stamp") {
« no previous file with comments | « PRESUBMIT.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698