@@ -125,34 +125,39 @@ genrule(
125
125
cmd = "echo noop > $(location :compile_commands_done)" ,
126
126
)
127
127
128
+ # This sets up targets for install-wiredtiger and archive-wiredtiger
128
129
mongo_install (
129
130
name = "wiredtiger" ,
130
131
srcs = [
131
132
"//src/third_party/wiredtiger:wt" ,
132
133
],
133
134
)
134
135
136
+ # This sets up targets for install-mongod and archive-mongod
135
137
mongo_install (
136
138
name = "mongod" ,
137
139
srcs = [
138
140
"//src/mongo/db:mongod" ,
139
141
],
140
142
)
141
143
144
+ # This sets up targets for install-mongos and archive-mongos
142
145
mongo_install (
143
146
name = "mongos" ,
144
147
srcs = [
145
148
"//src/mongo/s:mongos" ,
146
149
],
147
150
)
148
151
152
+ # This sets up targets for install-mongo and archive-mongo
149
153
mongo_install (
150
154
name = "mongo" ,
151
155
srcs = [
152
156
"//src/mongo/shell:mongo" ,
153
157
],
154
158
)
155
159
160
+ # This sets up targets for install-core and archive-core
156
161
mongo_install (
157
162
name = "core" ,
158
163
srcs = [],
@@ -162,6 +167,7 @@ mongo_install(
162
167
],
163
168
)
164
169
170
+ # This sets up targets for install-devcore and archive-devcore
165
171
mongo_install (
166
172
name = "devcore" ,
167
173
srcs = [],
@@ -172,13 +178,15 @@ mongo_install(
172
178
],
173
179
)
174
180
181
+ # This sets up targets for install-mongotest and archive-mongotest
175
182
mongo_install (
176
183
name = "mongotest" ,
177
184
srcs = [
178
185
"//src/mongo/db/query/query_tester:mongotest" ,
179
186
],
180
187
)
181
188
189
+ # This sets up targets for install-mongocryptd and archive-mongocryptd
182
190
mongo_install (
183
191
name = "mongocryptd" ,
184
192
srcs = [],
@@ -189,6 +197,7 @@ mongo_install(
189
197
190
198
# This reflects the package that actually gets released during packaging. Be careful
191
199
# when changing this definition
200
+ # This sets up targets for install-dist and archive-dist
192
201
mongo_install (
193
202
name = "dist" ,
194
203
srcs = [
@@ -249,6 +258,7 @@ copy_to_directory(
249
258
],
250
259
)
251
260
261
+ # This sets up targets for install-dist-test and archive-dist-test
252
262
mongo_install (
253
263
name = "dist-test" ,
254
264
srcs = [
@@ -280,6 +290,7 @@ mongo_install(
280
290
],
281
291
)
282
292
293
+ # This sets up targets for install-mongo_crypt and archive-mongo_crypt
283
294
mongo_install (
284
295
name = "mongo_crypt" ,
285
296
srcs = [],
@@ -289,6 +300,7 @@ mongo_install(
289
300
],
290
301
)
291
302
303
+ # This sets up targets for install-mongo_crypt_shlib_test and archive-mongo_crypt_shlib_test
292
304
mongo_install (
293
305
name = "mongo_crypt_shlib_test" ,
294
306
srcs = [],
@@ -297,20 +309,23 @@ mongo_install(
297
309
],
298
310
)
299
311
312
+ # This sets up targets for install-dbtest and archive-dbtest
300
313
mongo_install (
301
314
name = "dbtest" ,
302
315
srcs = [
303
316
"//src/mongo/dbtests:dbtest" ,
304
317
],
305
318
)
306
319
320
+ # This sets up targets for install-sdam_json_test and archive-sdam_json_test
307
321
mongo_install (
308
322
name = "sdam_json_test" ,
309
323
srcs = [
310
324
"//src/mongo/client/sdam:sdam_json_test" ,
311
325
],
312
326
)
313
327
328
+ # This sets up targets for install-server_selection_json_test and archive-server_selection_json_test
314
329
mongo_install (
315
330
name = "server_selection_json_test" ,
316
331
srcs = [
@@ -326,6 +341,7 @@ copy_file(
326
341
out = "copied_files/stitch_support.h" ,
327
342
)
328
343
344
+ # This sets up targets for install-stitch_support and archive-stitch_support
329
345
mongo_install (
330
346
name = "stitch_support" ,
331
347
srcs = ["//src/mongo/embedded/stitch_support" ],
@@ -335,6 +351,7 @@ mongo_install(
335
351
},
336
352
)
337
353
354
+ # This sets up targets for install-stitch_support_test and archive-stitch_support_test
338
355
mongo_install (
339
356
name = "stitch_support_test" ,
340
357
testonly = True ,
@@ -343,6 +360,7 @@ mongo_install(
343
360
],
344
361
)
345
362
363
+ # This sets up targets for install-compass and archive-compass
346
364
mongo_install (
347
365
name = "compass" ,
348
366
srcs = ["//src/mongo/installer/compass:compass_files" ],
@@ -361,6 +379,7 @@ mongo_install(
361
379
if target_name != "mongo_integration_test"
362
380
]
363
381
382
+ # This sets up targets for install-mongo_integration_test and archive-mongo_integration_test
364
383
mongo_install (
365
384
name = "mongo_integration_test" ,
366
385
testonly = True ,
@@ -375,6 +394,7 @@ mongo_install(
375
394
}),
376
395
)
377
396
397
+ # This sets up targets for install-mongotmock and archive-mongotmock
378
398
mongo_install (
379
399
name = "mongotmock" ,
380
400
srcs = [
0 commit comments