Reinstate one check, fix fall out
This commit is contained in:
parent
1345a85d0d
commit
2835161513
|
|
@ -156,7 +156,6 @@ filegroups:
|
|||
- include/grpc/impl/codegen/gpr_slice.h
|
||||
- include/grpc/impl/codegen/gpr_types.h
|
||||
- include/grpc/impl/codegen/port_platform.h
|
||||
- include/grpc/impl/codegen/slice.h
|
||||
- include/grpc/impl/codegen/sync.h
|
||||
- include/grpc/impl/codegen/sync_generic.h
|
||||
- include/grpc/impl/codegen/sync_posix.h
|
||||
|
|
@ -465,6 +464,7 @@ filegroups:
|
|||
- include/grpc/impl/codegen/exec_ctx_fwd.h
|
||||
- include/grpc/impl/codegen/grpc_types.h
|
||||
- include/grpc/impl/codegen/propagation_bits.h
|
||||
- include/grpc/impl/codegen/slice.h
|
||||
- include/grpc/impl/codegen/status.h
|
||||
uses:
|
||||
- gpr_codegen
|
||||
|
|
|
|||
|
|
@ -7458,7 +7458,6 @@
|
|||
"include/grpc/impl/codegen/gpr_slice.h",
|
||||
"include/grpc/impl/codegen/gpr_types.h",
|
||||
"include/grpc/impl/codegen/port_platform.h",
|
||||
"include/grpc/impl/codegen/slice.h",
|
||||
"include/grpc/impl/codegen/sync.h",
|
||||
"include/grpc/impl/codegen/sync_generic.h",
|
||||
"include/grpc/impl/codegen/sync_posix.h",
|
||||
|
|
@ -7475,7 +7474,6 @@
|
|||
"include/grpc/impl/codegen/gpr_slice.h",
|
||||
"include/grpc/impl/codegen/gpr_types.h",
|
||||
"include/grpc/impl/codegen/port_platform.h",
|
||||
"include/grpc/impl/codegen/slice.h",
|
||||
"include/grpc/impl/codegen/sync.h",
|
||||
"include/grpc/impl/codegen/sync_generic.h",
|
||||
"include/grpc/impl/codegen/sync_posix.h",
|
||||
|
|
@ -7945,6 +7943,7 @@
|
|||
"include/grpc/impl/codegen/exec_ctx_fwd.h",
|
||||
"include/grpc/impl/codegen/grpc_types.h",
|
||||
"include/grpc/impl/codegen/propagation_bits.h",
|
||||
"include/grpc/impl/codegen/slice.h",
|
||||
"include/grpc/impl/codegen/status.h"
|
||||
],
|
||||
"is_filegroup": true,
|
||||
|
|
@ -7957,6 +7956,7 @@
|
|||
"include/grpc/impl/codegen/exec_ctx_fwd.h",
|
||||
"include/grpc/impl/codegen/grpc_types.h",
|
||||
"include/grpc/impl/codegen/propagation_bits.h",
|
||||
"include/grpc/impl/codegen/slice.h",
|
||||
"include/grpc/impl/codegen/status.h"
|
||||
],
|
||||
"third_party": false,
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in New Issue