summaryrefslogtreecommitdiff
path: root/etc/import/third_party/TARGETS.grpc
blob: 754568ae42c031f98c29847650af1e02341d08f2 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{ "ares_build_h":
  { "type": "install"
  , "files": {"ares_build.h": "cares/ares_build.h"}
  }
, "ares_config_h":
  { "type": "install"
  , "arguments_config": ["OS", "ARCH", "TARGET_ARCH"]
  , "files":
    { "ares_config.h":
      { "type": "let*"
      , "bindings":
        [ [ "PLATFORM"
          , { "type": "join"
            , "separator": "_"
            , "$1":
              [ {"type": "var", "name": "OS"}
              , { "type": "var"
                , "name": "TARGET_ARCH"
                , "default": {"type": "var", "name": "ARCH"}
                }
              ]
            }
          ]
        ]
      , "body":
        { "type": "cond"
        , "cond":
          [ [ { "type": "or"
              , "$1":
                [ { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "ios_x86_64"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "ios_armv7"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "ios_armv7s"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "ios_arm64"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "tvos_x86_64"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "tvos_arm64"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "watchos_i386"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "watchos_x86_64"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "watchos_armv7k"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "watchos_arm64_32"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "PLATFORM"}
                  , "$2": "darwin_x86_64"
                  }
                , { "type": "=="
                  , "$1": {"type": "var", "name": "OS"}
                  , "$2": "darwin"
                  }
                ]
              }
            , "cares/config_darwin/ares_config.h"
            ]
          , [ { "type": "=="
              , "$1": {"type": "var", "name": "OS"}
              , "$2": "windows"
              }
            , "cares/config_windows/ares_config.h"
            ]
          , [ { "type": "=="
              , "$1": {"type": "var", "name": "OS"}
              , "$2": "android"
              }
            , "cares/config_android/ares_config.h"
            ]
          ]
        , "default": "cares/config_linux/ares_config.h"
        }
      }
    }
  }
, "address_sorting":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["address_sorting"]
  , "stage": ["third_party", "address_sorting"]
  , "pure C": ["YES"]
  , "srcs":
    [ "address_sorting/address_sorting.c"
    , "address_sorting/address_sorting_posix.c"
    , "address_sorting/address_sorting_windows.c"
    ]
  , "hdrs": ["address_sorting/address_sorting_internal.h"]
  , "deps":
    [ ["./", "address_sorting/include/address_sorting", "address_sorting_headers"]
    ]
  }
}