summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/TARGETS
blob: dde3c03b0343fb50880226e35485473c563f94a4 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
{ "execution_server":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["execution_server"]
  , "hdrs": ["execution_server.hpp"]
  , "srcs": ["execution_server.cpp"]
  , "proto":
    [ ["@", "bazel_remote_apis", "", "remote_execution_proto"]
    , ["@", "googleapis", "", "google_longrunning_operations_proto"]
    , ["@", "googleapis", "", "google_rpc_status_proto"]
    ]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ "operation_cache"
    , ["@", "grpc", "", "grpc++"]
    , ["@", "gsl", "", "gsl"]
    , ["src/buildtool/common", "bazel_types"]
    , ["src/buildtool/execution_api/common", "common"]
    , ["src/buildtool/execution_api/local", "context"]
    , ["src/buildtool/execution_api/local", "local_api"]
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/storage", "config"]
    , ["src/buildtool/storage", "storage"]
    , ["src/utils/cpp", "expected"]
    ]
  , "private-deps":
    [ ["@", "fmt", "", "fmt"]
    , ["@", "protoc", "", "libprotobuf"]
    , ["src/buildtool/common", "common"]
    , ["src/buildtool/common", "protocol_traits"]
    , ["src/buildtool/crypto", "hash_function"]
    , ["src/buildtool/file_system", "file_system_manager"]
    , ["src/buildtool/file_system", "object_type"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/storage", "garbage_collector"]
    , ["src/utils/cpp", "hex_string"]
    ]
  , "private-ldflags":
    ["-pthread", "-Wl,--whole-archive,-lpthread,--no-whole-archive"]
  }
, "ac_server":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["ac_server"]
  , "hdrs": ["ac_server.hpp"]
  , "srcs": ["ac_server.cpp"]
  , "proto": [["@", "bazel_remote_apis", "", "remote_execution_proto"]]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ ["@", "grpc", "", "grpc++"]
    , ["@", "gsl", "", "gsl"]
    , ["src/buildtool/common", "bazel_types"]
    , ["src/buildtool/execution_api/local", "context"]
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/storage", "config"]
    , ["src/buildtool/storage", "storage"]
    ]
  , "private-deps":
    [ ["@", "fmt", "", "fmt"]
    , ["src/buildtool/common", "common"]
    , ["src/buildtool/crypto", "hash_function"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/storage", "garbage_collector"]
    , ["src/utils/cpp", "expected"]
    ]
  }
, "cas_server":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["cas_server"]
  , "hdrs": ["cas_server.hpp"]
  , "srcs": ["cas_server.cpp"]
  , "proto":
    [ ["@", "bazel_remote_apis", "", "remote_execution_proto"]
    , ["@", "googleapis", "", "google_rpc_status_proto"]
    ]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ ["@", "grpc", "", "grpc++"]
    , ["@", "gsl", "", "gsl"]
    , ["src/buildtool/common", "bazel_types"]
    , ["src/buildtool/execution_api/local", "context"]
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/storage", "config"]
    , ["src/buildtool/storage", "storage"]
    ]
  , "private-deps":
    [ "cas_utils"
    , ["@", "fmt", "", "fmt"]
    , ["@", "protoc", "", "libprotobuf"]
    , ["src/buildtool/common", "common"]
    , ["src/buildtool/crypto", "hash_function"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/storage", "garbage_collector"]
    , ["src/utils/cpp", "expected"]
    ]
  }
, "server_implementation":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["server_implementation"]
  , "hdrs": ["server_implementation.hpp"]
  , "srcs": ["server_implementation.cpp"]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ ["@", "gsl", "", "gsl"]
    , ["src/buildtool/execution_api/local", "context"]
    , ["src/buildtool/execution_api/remote", "context"]
    ]
  , "private-deps":
    [ "ac_server"
    , "bytestream_server"
    , "capabilities_server"
    , "cas_server"
    , "execution_server"
    , "operations_server"
    , ["@", "fmt", "", "fmt"]
    , ["@", "grpc", "", "grpc++"]
    , ["@", "json", "", "json"]
    , ["src/buildtool/auth", "auth"]
    , ["src/buildtool/common", "protocol_traits"]
    , ["src/buildtool/common/remote", "port"]
    , ["src/buildtool/crypto", "hash_function"]
    , ["src/buildtool/execution_api/local", "local_api"]
    , ["src/buildtool/file_system", "atomic"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/storage", "config"]
    , ["src/utils/cpp", "type_safe_arithmetic"]
    ]
  }
, "bytestream_server":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["bytestream"]
  , "hdrs": ["bytestream_server.hpp"]
  , "srcs": ["bytestream_server.cpp"]
  , "proto": [["@", "googleapis", "", "google_bytestream_proto"]]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ ["@", "grpc", "", "grpc++"]
    , ["@", "gsl", "", "gsl"]
    , ["src/buildtool/execution_api/local", "context"]
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/storage", "config"]
    , ["src/buildtool/storage", "storage"]
    ]
  , "private-deps":
    [ "cas_utils"
    , ["@", "fmt", "", "fmt"]
    , ["@", "protoc", "", "libprotobuf"]
    , ["src/buildtool/common", "common"]
    , ["src/buildtool/crypto", "hash_function"]
    , ["src/buildtool/execution_api/common", "bytestream_utils"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/storage", "garbage_collector"]
    , ["src/utils/cpp", "expected"]
    , ["src/utils/cpp", "incremental_reader"]
    , ["src/utils/cpp", "tmp_dir"]
    ]
  }
, "capabilities_server":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["capabilities_server"]
  , "hdrs": ["capabilities_server.hpp"]
  , "srcs": ["capabilities_server.cpp"]
  , "proto":
    [ ["@", "bazel_remote_apis", "", "remote_execution_proto"]
    , ["@", "bazel_remote_apis", "", "semver_proto"]
    ]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ ["@", "grpc", "", "grpc++"]
    , ["src/buildtool/common", "bazel_types"]
    , ["src/buildtool/crypto", "hash_function"]
    ]
  , "private-deps":
    [ ["src/buildtool/common", "protocol_traits"]
    , ["src/buildtool/execution_api/common", "message_limits"]
    ]
  }
, "operation_cache":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["operation_cache"]
  , "hdrs": ["operation_cache.hpp"]
  , "srcs": ["operation_cache.cpp"]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "proto": [["@", "googleapis", "", "google_longrunning_operations_proto"]]
  , "deps": [["@", "protoc", "", "libprotobuf"]]
  }
, "operations_server":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["operations_server"]
  , "hdrs": ["operations_server.hpp"]
  , "srcs": ["operations_server.cpp"]
  , "deps":
    [ "operation_cache"
    , ["@", "grpc", "", "grpc++"]
    , ["@", "gsl", "", "gsl"]
    , ["@", "protoc", "", "libprotobuf"]
    , ["src/buildtool/logging", "logging"]
    ]
  , "proto": [["@", "googleapis", "", "google_longrunning_operations_proto"]]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "private-deps":
    [ ["@", "fmt", "", "fmt"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/utils/cpp", "hex_string"]
    ]
  }
, "cas_utils":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["cas_utils"]
  , "hdrs": ["cas_utils.hpp"]
  , "srcs": ["cas_utils.cpp"]
  , "stage": ["src", "buildtool", "execution_api", "execution_service"]
  , "deps":
    [ ["@", "grpc", "", "grpc++"]
    , ["src/buildtool/common", "common"]
    , ["src/buildtool/storage", "storage"]
    , ["src/utils/cpp", "expected"]
    ]
  , "private-deps":
    [ ["@", "fmt", "", "fmt"]
    , ["@", "gsl", "", "gsl"]
    , ["src/buildtool/common", "protocol_traits"]
    , ["src/buildtool/crypto", "hash_function"]
    , ["src/buildtool/file_system", "file_system_manager"]
    ]
  }
}