lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%YAML 1.2
--- |
  <%!
  # TODO (mxyan): Make this list from build.yaml
  textual_headers = ["include/grpc/support/atm_gcc_atomic.h",
                     "include/grpc/support/atm_gcc_sync.h",
                     "include/grpc/support/atm_windows.h",
                     "include/grpc/support/sync_custom.h",
                     "include/grpc/support/sync_posix.h",
                     "include/grpc/support/sync_windows.h",
                     "include/grpc/support/tls_gcc.h",
                     "include/grpc/support/tls_msvc.h",
                     "include/grpc/support/tls_pthread.h",
                     "include/grpc/impl/codegen/atm_gcc_atomic.h",
                     "include/grpc/impl/codegen/atm_gcc_sync.h",
                     "include/grpc/impl/codegen/atm_windows.h",
                     "include/grpc/impl/codegen/sync_custom.h",
                     "include/grpc/impl/codegen/sync_posix.h",
                     "include/grpc/impl/codegen/sync_windows.h"]
 
  def grpc_public_headers_no_dir(libs):
    out = []
    for lib in libs:
      if lib.name in ("grpc", "gpr"):
        out += lib.get('public_headers', [])
    out = [f for f in out if f not in textual_headers]
    out = [hdr.split('/', 2)[2] for hdr in out]
    return out
 
  # Generate the list of platform-specific headers as textual headers so that
  # they are not built when the module is built but only when they are named by
  # an #include directive.
  def grpc_public_textual_headers_no_dir(libs):
    out = []
    for lib in libs:
      if lib.name in ("grpc", "gpr"):
        out += lib.get('public_headers', [])
    out = [f for f in out if f in textual_headers]
    out = [hdr.split('/', 2)[2] for hdr in out]
    return out
 
  def header_lines(files):
    return ('\n  ').join('header "%s"' % f for f in files)
 
  def textual_header_lines(files):
    return ('\n  ').join('textual header "%s"' % f for f in files)
  %>
  framework module grpc {
    umbrella header "grpc.h"
 
    ${header_lines(grpc_public_headers_no_dir(libs))}
 
    ${textual_header_lines(grpc_public_textual_headers_no_dir(libs))}
 
    export *
    module * { export * }
  }