diff options
author | tfarina <tfarina@chromium.org> | 2015-02-01 18:55:42 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-02 02:56:42 +0000 |
commit | cb1ffc60dc2b70da6676b5112b5bad0bb785f757 (patch) | |
tree | 8eeb2e4d6716f525aa9217e81fddb7a586d115a9 /.gn | |
parent | db8a11edfee05553bf7b84897472005ddcef0839 (diff) | |
download | chromium_src-cb1ffc60dc2b70da6676b5112b5bad0bb785f757.zip chromium_src-cb1ffc60dc2b70da6676b5112b5bad0bb785f757.tar.gz chromium_src-cb1ffc60dc2b70da6676b5112b5bad0bb785f757.tar.bz2 |
Fix 'gn check' errors in //ui/* targets.
Tested with the following configs:
Linux:
$ gn gen out_gn/Debug
$ gn check out_gn/Debug
Android:
$ gn gen --args='os="android" cpu_arch="arm"' out_gn_android/Debug
$ gn check out_gn_android/Debug
Chromeos:
$ gn gen --args='os="chromeos"' out_gn_chromeos/Debug
$ gn check out_gn_chromeos/Debug
BUG=367595, 376000
TEST=see above
R=brettw@chromium.org
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/872243004
Cr-Commit-Position: refs/heads/master@{#314102}
Diffstat (limited to '.gn')
-rw-r--r-- | .gn | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,4 +14,4 @@ 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 = [ "//cc" ] +check_targets = [ "//cc/*" ] |