Roll GN
authormtklein <mtklein@chromium.org>
Mon, 29 Aug 2016 14:14:28 +0000 (07:14 -0700)
committerCommit bot <commit-bot@chromium.org>
Mon, 29 Aug 2016 14:14:28 +0000 (07:14 -0700)
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
gn/BUILD.gn

diff --git a/DEPS b/DEPS
index 4f1afc1..6d00116 100644 (file)
--- 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",
 
index da627d7..682986c 100644 (file)
@@ -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") {