summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authoragrieve <agrieve@chromium.org>2015-07-08 13:51:03 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-08 20:51:34 +0000
commitdeb02768bf9805279461259119a845aa2c734e25 (patch)
treee003fe3730b87b595a97525b57e42df5f2b6efa6 /storage
parentf5c53a2db11b3212a5351705750dafa5bef57b0c (diff)
downloadchromium_src-deb02768bf9805279461259119a845aa2c734e25.zip
chromium_src-deb02768bf9805279461259119a845aa2c734e25.tar.gz
chromium_src-deb02768bf9805279461259119a845aa2c734e25.tar.bz2
Fix gn check errors for storage/common:common
Once blink headers are added as sources (https://codereview.chromium.org/1222673004/), if you run the following command line, you will get errors like this: $ gn check ERROR at //storage/common/fileapi/file_system_util.h:17:11: Include not allowed. ^------------------------------------------------ It is not in any dependency of //storage/common:common The include file is in the target(s): //third_party/WebKit/public:blink_headers which should somehow be reachable. BUG=367595 Review URL: https://codereview.chromium.org/1222733002 Cr-Commit-Position: refs/heads/master@{#337904}
Diffstat (limited to 'storage')
-rw-r--r--storage/common/BUILD.gn1
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/common/BUILD.gn b/storage/common/BUILD.gn
index 97ddb2f..c6bfd6a 100644
--- a/storage/common/BUILD.gn
+++ b/storage/common/BUILD.gn
@@ -36,5 +36,6 @@ component("common") {
"//base/third_party/dynamic_annotations",
"//net",
"//url",
+ "//third_party/WebKit/public:blink_headers",
]
}