From a28e263d42760370c9ff0b269b31a78d6701fb44 Mon Sep 17 00:00:00 2001 From: mtklein Date: Mon, 29 Aug 2016 07:14:28 -0700 Subject: [PATCH] Roll GN This picks up https://chromium.googlesource.com/chromium/src/tools/gn/+/efc976e5029419fde92111ce52f913c61fb9553c, which means we don't need to create a link_pool any more. The default behavior is unlimited linking, what we were asking for explicitly. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2288253002 Review-Url: https://codereview.chromium.org/2288253002 --- DEPS | 2 +- gn/BUILD.gn | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/DEPS b/DEPS index 4f1afc1..6d00116 100644 --- a/DEPS +++ b/DEPS @@ -3,7 +3,7 @@ use_relative_paths = True # Dependencies on outside packages. # deps = { - "buildtools": "https://chromium.googlesource.com/chromium/buildtools.git@33a32b8aa2b7274d246fcf85ce8f762cf4291418", + "buildtools": "https://chromium.googlesource.com/chromium/buildtools.git@adb8bf4e8fc92aa1717bf151b862d58e6f27c4f2", "common": "https://skia.googlesource.com/common.git@c282fe0b6e392b14f88d647cbd86e1a3ef5498e0", diff --git a/gn/BUILD.gn b/gn/BUILD.gn index da627d7..682986c 100644 --- a/gn/BUILD.gn +++ b/gn/BUILD.gn @@ -117,10 +117,6 @@ config("executable") { } } -pool("link_pool") { - depth = 0 #unlimited -} - toolchain("gcc_like") { lib_switch = "-l" lib_dir_switch = "-L" @@ -182,7 +178,6 @@ toolchain("gcc_like") { output_prefix = "lib" default_output_extension = ".so" description = "$compiler_prefix $cxx -shared ... -o {{output}}" - pool = ":link_pool" } tool("link") { @@ -191,7 +186,6 @@ toolchain("gcc_like") { "{{root_out_dir}}/{{target_output_name}}{{output_extension}}", ] description = "$compiler_prefix $cxx ... -o {{output}}" - pool = ":link_pool" } tool("stamp") { -- 2.7.4