aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/test/core
diff options
context:
space:
mode:
authorGravatar Makarand Dharmapurikar <makarandd@google.com>2016-06-02 09:15:29 -0700
committerGravatar Makarand Dharmapurikar <makarandd@google.com>2016-06-02 09:15:29 -0700
commit19061093eb480adfeae59f71228fb66296621eb9 (patch)
treeb8a8bec2fdb79dfdb8a400f725df022b950e9bb0 /templates/test/core
parenteaf5426e7b734915bab7392d0817deb0dace425c (diff)
fixed template to remove grpc_cronet.h as a dependency
Diffstat (limited to 'templates/test/core')
-rw-r--r--templates/test/core/surface/public_headers_must_be_c89.c.template1
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/test/core/surface/public_headers_must_be_c89.c.template b/templates/test/core/surface/public_headers_must_be_c89.c.template
index e132256cb8..a661fa9bc4 100644
--- a/templates/test/core/surface/public_headers_must_be_c89.c.template
+++ b/templates/test/core/surface/public_headers_must_be_c89.c.template
@@ -46,6 +46,7 @@
if lib.language != 'c': continue
for hdr in lib.get('public_headers', []):
if is_platform_header(hdr): continue
+ if 'grpc_cronet.h' in hdr: continue
assert(hdr[0:len(pfx)] == pfx)
hdrs.add(hdr[len(pfx):])
hdrs = sorted(list(hdrs))