aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/sanity/check_sources_and_headers.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-30 10:48:34 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-30 10:48:34 -0700
commit283516151388190071ef2fb15368ac3c970faaa1 (patch)
treedbe65493c1dce56149782b4ccd61f6bd3818fc59 /tools/run_tests/sanity/check_sources_and_headers.py
parent1345a85d0db633e228d0cd3200486d0458c61461 (diff)
Reinstate one check, fix fall out
Diffstat (limited to 'tools/run_tests/sanity/check_sources_and_headers.py')
-rwxr-xr-xtools/run_tests/sanity/check_sources_and_headers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/sanity/check_sources_and_headers.py b/tools/run_tests/sanity/check_sources_and_headers.py
index c80c221d70..42892ea69d 100755
--- a/tools/run_tests/sanity/check_sources_and_headers.py
+++ b/tools/run_tests/sanity/check_sources_and_headers.py
@@ -84,7 +84,7 @@ for target in js:
errors += 1
m = re_inc2.match(line)
if m:
- if not target_has_header(target, 'include/' + m.group(1)) and not target['is_filegroup']:
+ if not target_has_header(target, 'include/' + m.group(1)):
print (
'target %s (%s) does not name header %s as a dependency' % (
target['name'], fn, m.group(1)))