From e0615b7dd1b2085ce5b1db095e14c7ca7efbae58 Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Wed, 18 May 2016 09:35:44 +0200 Subject: [PATCH] GN: Disable checks in WebRTC tree due to too many errors. We will have to work through addressing these problems with multiple steps, cleaning up one directories one by one. See https://chromium.googlesource.com/chromium/src/+/master/tools/gn/docs/reference.md#gn-file-Variables for documentation on this. BUG=webrtc:5589 TBR=phoglund@webrtc.org TESTED=Successfully ran: gn gen out/Default --check Review URL: https://codereview.webrtc.org/1989173002 . Cr-Commit-Position: refs/heads/master@{#12785} --- .gn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gn b/.gn index b1eb19d2ca..7edbc59567 100644 --- a/.gn +++ b/.gn @@ -18,7 +18,8 @@ secondary_source = "//build/secondary/" # matching these patterns (see "gn help label_pattern" for format) will have # their includes checked for proper dependencies when you run either # "gn check" or "gn gen --check". -check_targets = [ "//webrtc/*" ] +# TODO(kjellander): Keep adding paths to this list as work in webrtc:5589 is done. +check_targets = [] # These are the list of GN files that run exec_script. This whitelist exists # to force additional review for new uses of exec_script, which is strongly