aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/sanity
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-30 10:27:20 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-30 10:27:20 -0700
commit29b527fa306fd46be0120e6c1322b813969e5e4e (patch)
tree8b2aa03236a132474aa3c9d7546c9d5cf58fa377 /tools/run_tests/sanity
parent387c3a4f566338c488e0b6406fcf7d4580bf5784 (diff)
Reinstate one check, fix fall out
Diffstat (limited to 'tools/run_tests/sanity')
-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 f2e0bfeb3d..c80c221d70 100755
--- a/tools/run_tests/sanity/check_sources_and_headers.py
+++ b/tools/run_tests/sanity/check_sources_and_headers.py
@@ -77,7 +77,7 @@ for target in js:
for line in src:
m = re_inc1.match(line)
if m:
- if not target_has_header(target, m.group(1)) and not target['is_filegroup']:
+ if not target_has_header(target, m.group(1)):
print (
'target %s (%s) does not name header %s as a dependency' % (
target['name'], fn, m.group(1)))