summaryrefslogtreecommitdiffstats
path: root/BUILD.gn
diff options
context:
space:
mode:
authorwjia@chromium.org <wjia@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-09 18:53:06 +0000
committerwjia@chromium.org <wjia@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-09 18:53:06 +0000
commit5bec78d31fac018b965e19d368612a13d183f1ad (patch)
treea07e282e23d47c53d6f78817f5b5d4d9675185ff /BUILD.gn
parentd9e8f2dce6fb0d0b7922a1d102e6457b77ac73be (diff)
downloadchromium_src-5bec78d31fac018b965e19d368612a13d183f1ad.zip
chromium_src-5bec78d31fac018b965e19d368612a13d183f1ad.tar.gz
chromium_src-5bec78d31fac018b965e19d368612a13d183f1ad.tar.bz2
Revert 262747 "Improve GN public header file checking"
It failed Win x64 Builder: http://build.chromium.org/p/chromium.win/builders/Win%20x64%20Builder/builds/17043/steps/compile/logs/stdio > Improve GN public header file checking > > This makes the header checker and include iterator work from InputFiles (which basically just hold the file buffer) rather than just raw strings. This allows us to reference these files from Err. > > Some extra line/char tracking is now in the include iterator so we can actually quote from and annotate the place in the source file where the bad include is, which looks much nicer than "the file blah included blah". It also makes it possible to write much shorter error messages that still make sense. > > This adds visibility checking as previously documented in the help for "public" and a unit test for that. > > This updates the documentation for "public" which was wrong (it referred to patterns which was not used). > > R=scottmg@chromium.org > > Review URL: https://codereview.chromium.org/229423002 TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/231293003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262755 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn7
1 files changed, 1 insertions, 6 deletions
diff --git a/BUILD.gn b/BUILD.gn
index e8dbc1d..224dedb 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -32,6 +32,7 @@ group("root") {
#"//sdch",
#"//skia",
#"//third_party/WebKit/Source/platform",
+ "//third_party/freetype2",
#"//third_party/icu:icudata",
#"//third_party/leveldatabase",
"//third_party/libpng",
@@ -46,10 +47,4 @@ group("root") {
"//ui/gfx/geometry",
"//url",
]
-
- if (is_linux) {
- deps += [
- "//third_party/freetype2",
- ]
- }
}