aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/sanity/check_sources_and_headers.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-08-09 16:05:12 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-08-09 16:05:12 -0700
commit8a3df2ecbe5acd62e203ffdecaea216630619b83 (patch)
tree4a19f9eec7de131bc9fd81b61925c9e185dc7bec /tools/run_tests/sanity/check_sources_and_headers.py
parentc919aff578cf59d4a1d610e1f7ed26db3aa601c3 (diff)
parent2f24f497c4e9578d9cc8a4a5606b3846c14e51d7 (diff)
Merge github.com:grpc/grpc into moovee
Diffstat (limited to 'tools/run_tests/sanity/check_sources_and_headers.py')
-rwxr-xr-xtools/run_tests/sanity/check_sources_and_headers.py3
1 files changed, 2 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 c028499ca6..28c1dc46d7 100755
--- a/tools/run_tests/sanity/check_sources_and_headers.py
+++ b/tools/run_tests/sanity/check_sources_and_headers.py
@@ -55,7 +55,8 @@ def target_has_header(target, name):
for dep in target['deps']:
if target_has_header(get_target(dep), name):
return True
- if name == 'src/core/lib/profiling/stap_probes.h':
+ if name in ['src/core/lib/profiling/stap_probes.h',
+ 'src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.h']:
return True
return False