aboutsummaryrefslogtreecommitdiff
path: root/build.json
blob: 8003b5847da3227e89d0b47eb73326b4dc6114d5 (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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
// This file defines BoringSSL's build, expressed in terms of the input source
// files that BoringSSL developers edit. It is a JSON file with line comments,
// with line comments removed before parsing. It drives ./util/pregenerate which
// converts some of those inputs (e.g. perlasm files) into pre-generated
// outputs. This produces a more simplified build, which is then converted into
// build files of various syntaxes.
//
// When modifying this file, run `go run ./util/pregenerate`. See gen/README.md
// for more details, and util/pregenerate/build.go for the schema.
//
// TODO(crbug.com/boringssl/542): Moving build inputs to this file is still work
// in progress, so this file is currently incomplete.
{
    "bcm": {
        "perlasm_aarch64": [
            {"src": "crypto/fipsmodule/aes/asm/aesv8-armx.pl", "dst": "aesv8-armv8"},
            {"src": "crypto/fipsmodule/modes/asm/aesv8-gcm-armv8.pl"},
            {"src": "crypto/fipsmodule/bn/asm/armv8-mont.pl"},
            {"src": "crypto/fipsmodule/bn/asm/bn-armv8.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghash-neon-armv8.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghashv8-armx.pl", "dst": "ghashv8-armv8"},
            {"src": "crypto/fipsmodule/ec/asm/p256_beeu-armv8-asm.pl"},
            {"src": "crypto/fipsmodule/ec/asm/p256-armv8-asm.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha1-armv8.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha512-armv8.pl", "args": ["sha256"], "dst": "sha256-armv8"},
            {"src": "crypto/fipsmodule/sha/asm/sha512-armv8.pl", "args": ["sha512"]},
            {"src": "crypto/fipsmodule/aes/asm/vpaes-armv8.pl"}
        ],
        "perlasm_arm": [
            {"src": "crypto/fipsmodule/aes/asm/aesv8-armx.pl", "dst": "aesv8-armv7"},
            {"src": "crypto/fipsmodule/bn/asm/armv4-mont.pl"},
            {"src": "crypto/fipsmodule/aes/asm/bsaes-armv7.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghash-armv4.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghashv8-armx.pl", "dst": "ghashv8-armv7"},
            {"src": "crypto/fipsmodule/sha/asm/sha1-armv4-large.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha256-armv4.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha512-armv4.pl"},
            {"src": "crypto/fipsmodule/aes/asm/vpaes-armv7.pl"}
        ],
        "perlasm_x86": [
            {"src": "crypto/fipsmodule/aes/asm/aesni-x86.pl"},
            {"src": "crypto/fipsmodule/bn/asm/bn-586.pl"},
            {"src": "crypto/fipsmodule/bn/asm/co-586.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghash-ssse3-x86.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghash-x86.pl"},
            {"src": "crypto/fipsmodule/md5/asm/md5-586.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha1-586.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha256-586.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha512-586.pl"},
            {"src": "crypto/fipsmodule/aes/asm/vpaes-x86.pl"},
            {"src": "crypto/fipsmodule/bn/asm/x86-mont.pl"}
        ],
        "perlasm_x86_64": [
            {"src": "crypto/fipsmodule/modes/asm/aesni-gcm-x86_64.pl"},
            {"src": "crypto/fipsmodule/aes/asm/aesni-x86_64.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghash-ssse3-x86_64.pl"},
            {"src": "crypto/fipsmodule/modes/asm/ghash-x86_64.pl"},
            {"src": "crypto/fipsmodule/md5/asm/md5-x86_64.pl"},
            {"src": "crypto/fipsmodule/ec/asm/p256_beeu-x86_64-asm.pl"},
            {"src": "crypto/fipsmodule/ec/asm/p256-x86_64-asm.pl"},
            {"src": "crypto/fipsmodule/rand/asm/rdrand-x86_64.pl"},
            {"src": "crypto/fipsmodule/bn/asm/rsaz-avx2.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha1-x86_64.pl"},
            {"src": "crypto/fipsmodule/sha/asm/sha512-x86_64.pl", "args": ["sha256"], "dst": "sha256-x86_64"},
            {"src": "crypto/fipsmodule/sha/asm/sha512-x86_64.pl", "args": ["sha512"]},
            {"src": "crypto/fipsmodule/aes/asm/vpaes-x86_64.pl"},
            {"src": "crypto/fipsmodule/bn/asm/x86_64-mont.pl"},
            {"src": "crypto/fipsmodule/bn/asm/x86_64-mont5.pl"}
        ]
    },
    "crypto": {
        "hdrs": [
            "include/openssl/aead.h",
            "include/openssl/aes.h",
            "include/openssl/arm_arch.h",
            "include/openssl/asm_base.h",
            "include/openssl/asn1.h",
            "include/openssl/asn1_mac.h",
            "include/openssl/asn1t.h",
            "include/openssl/base.h",
            "include/openssl/base64.h",
            "include/openssl/bio.h",
            "include/openssl/blake2.h",
            "include/openssl/blowfish.h",
            "include/openssl/bn.h",
            "include/openssl/buf.h",
            "include/openssl/buffer.h",
            "include/openssl/bytestring.h",
            "include/openssl/cast.h",
            "include/openssl/chacha.h",
            "include/openssl/cipher.h",
            "include/openssl/cmac.h",
            "include/openssl/conf.h",
            "include/openssl/cpu.h",
            "include/openssl/crypto.h",
            "include/openssl/ctrdrbg.h",
            "include/openssl/curve25519.h",
            "include/openssl/des.h",
            "include/openssl/dh.h",
            "include/openssl/digest.h",
            "include/openssl/dsa.h",
            "include/openssl/e_os2.h",
            "include/openssl/ec.h",
            "include/openssl/ec_key.h",
            "include/openssl/ecdh.h",
            "include/openssl/ecdsa.h",
            "include/openssl/engine.h",
            "include/openssl/err.h",
            "include/openssl/evp.h",
            "include/openssl/evp_errors.h",
            "include/openssl/ex_data.h",
            "include/openssl/experimental/kyber.h",
            "include/openssl/experimental/spx.h",
            "include/openssl/hkdf.h",
            "include/openssl/hmac.h",
            "include/openssl/hpke.h",
            "include/openssl/hrss.h",
            "include/openssl/is_boringssl.h",
            "include/openssl/kdf.h",
            "include/openssl/lhash.h",
            "include/openssl/md4.h",
            "include/openssl/md5.h",
            "include/openssl/mem.h",
            "include/openssl/nid.h",
            "include/openssl/obj.h",
            "include/openssl/obj_mac.h",
            "include/openssl/objects.h",
            "include/openssl/opensslconf.h",
            "include/openssl/opensslv.h",
            "include/openssl/ossl_typ.h",
            "include/openssl/pem.h",
            "include/openssl/pkcs12.h",
            "include/openssl/pkcs7.h",
            "include/openssl/pkcs8.h",
            "include/openssl/poly1305.h",
            "include/openssl/pool.h",
            "include/openssl/posix_time.h",
            "include/openssl/rand.h",
            "include/openssl/rc4.h",
            "include/openssl/ripemd.h",
            "include/openssl/rsa.h",
            "include/openssl/safestack.h",
            "include/openssl/service_indicator.h",
            "include/openssl/sha.h",
            "include/openssl/siphash.h",
            "include/openssl/span.h",
            "include/openssl/stack.h",
            "include/openssl/target.h",
            "include/openssl/thread.h",
            "include/openssl/time.h",
            "include/openssl/trust_token.h",
            "include/openssl/type_check.h",
            "include/openssl/x509.h",
            "include/openssl/x509_vfy.h",
            "include/openssl/x509v3.h",
            "include/openssl/x509v3_errors.h"
        ],
        "err_data": [
            "crypto/err/*.errordata"
        ],
        "asm": [
            "crypto/curve25519/asm/x25519-asm-arm.S",
            "crypto/hrss/asm/poly_rq_mul.S",
            "crypto/poly1305/poly1305_arm_asm.S",
            "third_party/fiat/asm/fiat_curve25519_adx_mul.S",
            "third_party/fiat/asm/fiat_curve25519_adx_square.S",
            "third_party/fiat/asm/fiat_p256_adx_mul.S",
            "third_party/fiat/asm/fiat_p256_adx_sqr.S"
        ],
        "perlasm_aarch64": [
            {"src": "crypto/chacha/asm/chacha-armv8.pl"},
            {"src": "crypto/cipher_extra/asm/chacha20_poly1305_armv8.pl"}
        ],
        "perlasm_arm": [
            {"src": "crypto/chacha/asm/chacha-armv4.pl"}
        ],
        "perlasm_x86": [
            {"src": "crypto/chacha/asm/chacha-x86.pl"}
        ],
        "perlasm_x86_64": [
            {"src": "crypto/chacha/asm/chacha-x86_64.pl"},
            {"src": "crypto/cipher_extra/asm/aes128gcmsiv-x86_64.pl"},
            {"src": "crypto/cipher_extra/asm/chacha20_poly1305_x86_64.pl"}
        ]
    },
    "pki": {
        "srcs": [
            "pki/cert_error_id.cc",
            "pki/cert_error_params.cc",
            "pki/cert_errors.cc",
            "pki/cert_issuer_source_static.cc",
            "pki/certificate.cc",
            "pki/certificate_policies.cc",
            "pki/common_cert_errors.cc",
            "pki/crl.cc",
            "pki/encode_values.cc",
            "pki/extended_key_usage.cc",
            "pki/general_names.cc",
            "pki/input.cc",
            "pki/ip_util.cc",
            "pki/name_constraints.cc",
            "pki/ocsp.cc",
            "pki/ocsp_verify_result.cc",
            "pki/parse_certificate.cc",
            "pki/parse_name.cc",
            "pki/parse_values.cc",
            "pki/parsed_certificate.cc",
            "pki/parser.cc",
            "pki/path_builder.cc",
            "pki/pem.cc",
            "pki/revocation_util.cc",
            "pki/signature_algorithm.cc",
            "pki/simple_path_builder_delegate.cc",
            "pki/string_util.cc",
            "pki/trust_store_collection.cc",
            "pki/trust_store_in_memory.cc",
            "pki/trust_store.cc",
            "pki/verify_certificate_chain.cc",
            "pki/verify_error.cc",
            "pki/verify_name_match.cc",
            "pki/verify_signed_data.cc"
        ],
        "hdrs": [
            "include/openssl/pki/certificate.h",
            "include/openssl/pki/signature_verify_cache.h"
        ]
    },
    "ssl": {
        "srcs": [
            "ssl/bio_ssl.cc",
            "ssl/d1_both.cc",
            "ssl/d1_lib.cc",
            "ssl/d1_pkt.cc",
            "ssl/d1_srtp.cc",
            "ssl/dtls_method.cc",
            "ssl/dtls_record.cc",
            "ssl/encrypted_client_hello.cc",
            "ssl/extensions.cc",
            "ssl/handoff.cc",
            "ssl/handshake_client.cc",
            "ssl/handshake_server.cc",
            "ssl/handshake.cc",
            "ssl/s3_both.cc",
            "ssl/s3_lib.cc",
            "ssl/s3_pkt.cc",
            "ssl/ssl_aead_ctx.cc",
            "ssl/ssl_asn1.cc",
            "ssl/ssl_buffer.cc",
            "ssl/ssl_cert.cc",
            "ssl/ssl_cipher.cc",
            "ssl/ssl_credential.cc",
            "ssl/ssl_file.cc",
            "ssl/ssl_key_share.cc",
            "ssl/ssl_lib.cc",
            "ssl/ssl_privkey.cc",
            "ssl/ssl_session.cc",
            "ssl/ssl_stat.cc",
            "ssl/ssl_transcript.cc",
            "ssl/ssl_versions.cc",
            "ssl/ssl_x509.cc",
            "ssl/t1_enc.cc",
            "ssl/tls_method.cc",
            "ssl/tls_record.cc",
            "ssl/tls13_both.cc",
            "ssl/tls13_client.cc",
            "ssl/tls13_enc.cc",
            "ssl/tls13_server.cc"
        ],
        "hdrs": [
            "include/openssl/dtls1.h",
            "include/openssl/srtp.h",
            "include/openssl/ssl.h",
            "include/openssl/ssl3.h",
            "include/openssl/tls1.h"
        ]
    },
    "decrepit": {
        "srcs": [
            "decrepit/bio/base64_bio.c",
            "decrepit/blowfish/blowfish.c",
            "decrepit/cast/cast.c",
            "decrepit/cast/cast_tables.c",
            "decrepit/cfb/cfb.c",
            "decrepit/des/cfb64ede.c",
            "decrepit/dh/dh_decrepit.c",
            "decrepit/dsa/dsa_decrepit.c",
            "decrepit/evp/dss1.c",
            "decrepit/evp/evp_do_all.c",
            "decrepit/obj/obj_decrepit.c",
            "decrepit/rc4/rc4_decrepit.c",
            "decrepit/ripemd/ripemd.c",
            "decrepit/rsa/rsa_decrepit.c",
            "decrepit/ssl/ssl_decrepit.c",
            "decrepit/x509/x509_decrepit.c",
            "decrepit/xts/xts.c"
        ]
    },
    "test_support": {
        "srcs": [
            "crypto/test/abi_test.cc",
            "crypto/test/file_test.cc",
            "crypto/test/file_test_gtest.cc",
            "crypto/test/file_util.cc",
            "crypto/test/test_data.cc",
            "crypto/test/test_util.cc",
            "crypto/test/wycheproof_util.cc"
        ],
        "perlasm_aarch64": [
            {"src": "crypto/test/asm/trampoline-armv8.pl"}
        ],
        "perlasm_arm": [
            {"src": "crypto/test/asm/trampoline-armv4.pl"}
        ],
        "perlasm_x86": [
            {"src": "crypto/test/asm/trampoline-x86.pl"}
        ],
        "perlasm_x86_64": [
            {"src": "crypto/test/asm/trampoline-x86_64.pl"}
        ]
    },
    "crypto_test": {
        "srcs": [
            "crypto/abi_self_test.cc",
            "crypto/asn1/asn1_test.cc",
            "crypto/base64/base64_test.cc",
            "crypto/bio/bio_test.cc",
            "crypto/blake2/blake2_test.cc",
            "crypto/buf/buf_test.cc",
            "crypto/bytestring/bytestring_test.cc",
            "crypto/chacha/chacha_test.cc",
            "crypto/cipher_extra/aead_test.cc",
            "crypto/cipher_extra/cipher_test.cc",
            "crypto/compiler_test.cc",
            "crypto/conf/conf_test.cc",
            "crypto/constant_time_test.cc",
            "crypto/cpu_arm_linux_test.cc",
            "crypto/crypto_test.cc",
            "crypto/curve25519/ed25519_test.cc",
            "crypto/curve25519/spake25519_test.cc",
            "crypto/curve25519/x25519_test.cc",
            "crypto/ecdh_extra/ecdh_test.cc",
            "crypto/dh_extra/dh_test.cc",
            "crypto/digest_extra/digest_test.cc",
            "crypto/dsa/dsa_test.cc",
            "crypto/err/err_test.cc",
            "crypto/evp/evp_extra_test.cc",
            "crypto/evp/evp_test.cc",
            "crypto/evp/pbkdf_test.cc",
            "crypto/evp/scrypt_test.cc",
            "crypto/fipsmodule/aes/aes_test.cc",
            "crypto/fipsmodule/bn/bn_test.cc",
            "crypto/fipsmodule/cmac/cmac_test.cc",
            "crypto/fipsmodule/ec/ec_test.cc",
            "crypto/fipsmodule/ec/p256-nistz_test.cc",
            "crypto/fipsmodule/ec/p256_test.cc",
            "crypto/fipsmodule/ecdsa/ecdsa_test.cc",
            "crypto/fipsmodule/hkdf/hkdf_test.cc",
            "crypto/fipsmodule/md5/md5_test.cc",
            "crypto/fipsmodule/modes/gcm_test.cc",
            "crypto/fipsmodule/rand/ctrdrbg_test.cc",
            "crypto/fipsmodule/rand/fork_detect_test.cc",
            "crypto/fipsmodule/service_indicator/service_indicator_test.cc",
            "crypto/fipsmodule/sha/sha_test.cc",
            "crypto/hpke/hpke_test.cc",
            "crypto/hmac_extra/hmac_test.cc",
            "crypto/hrss/hrss_test.cc",
            "crypto/impl_dispatch_test.cc",
            "crypto/keccak/keccak_test.cc",
            "crypto/kyber/kyber_test.cc",
            "crypto/lhash/lhash_test.cc",
            "crypto/obj/obj_test.cc",
            "crypto/pem/pem_test.cc",
            "crypto/pkcs7/pkcs7_test.cc",
            "crypto/pkcs8/pkcs8_test.cc",
            "crypto/pkcs8/pkcs12_test.cc",
            "crypto/poly1305/poly1305_test.cc",
            "crypto/pool/pool_test.cc",
            "crypto/rand_extra/rand_test.cc",
            "crypto/rand_extra/getentropy_test.cc",
            "crypto/refcount_test.cc",
            "crypto/rsa_extra/rsa_test.cc",
            "crypto/self_test.cc",
            "crypto/stack/stack_test.cc",
            "crypto/siphash/siphash_test.cc",
            "crypto/spx/spx_test.cc",
            "crypto/thread_test.cc",
            "crypto/test/gtest_main.cc",
            "crypto/trust_token/trust_token_test.cc",
            "crypto/x509/tab_test.cc",
            "crypto/x509/x509_test.cc",
            "crypto/x509/x509_time_test.cc"
        ],
        "data": [
            "crypto/blake2/blake2b256_tests.txt",
            "crypto/cipher_extra/test/*.txt",
            "crypto/cipher_extra/test/nist_cavp/*.txt",
            "crypto/curve25519/ed25519_tests.txt",
            "crypto/ecdh_extra/ecdh_tests.txt",
            "crypto/evp/evp_tests.txt",
            "crypto/evp/scrypt_tests.txt",
            "crypto/fipsmodule/aes/aes_tests.txt",
            "crypto/fipsmodule/bn/test/*.txt",
            "crypto/fipsmodule/cmac/cavp_3des_cmac_tests.txt",
            "crypto/fipsmodule/cmac/cavp_aes128_cmac_tests.txt",
            "crypto/fipsmodule/cmac/cavp_aes192_cmac_tests.txt",
            "crypto/fipsmodule/cmac/cavp_aes256_cmac_tests.txt",
            "crypto/fipsmodule/ec/ec_scalar_base_mult_tests.txt",
            "crypto/fipsmodule/ec/p256-nistz_tests.txt",
            "crypto/fipsmodule/ecdsa/ecdsa_sign_tests.txt",
            "crypto/fipsmodule/ecdsa/ecdsa_verify_tests.txt",
            "crypto/fipsmodule/modes/gcm_tests.txt",
            "crypto/fipsmodule/rand/ctrdrbg_vectors.txt",
            "crypto/hmac_extra/hmac_tests.txt",
            "crypto/hpke/hpke_test_vectors.txt",
            "crypto/keccak/keccak_tests.txt",
            "crypto/kyber/kyber_tests.txt",
            "crypto/pkcs8/test/*.p12",
            "crypto/poly1305/poly1305_tests.txt",
            "crypto/siphash/siphash_tests.txt",
            "crypto/spx/spx_tests.txt",
            "crypto/spx/spx_tests_deterministic.txt",
            "crypto/x509/test/*.pem",
            "third_party/wycheproof_testvectors/*.txt"
        ]
    },
    "urandom_test": {
        "srcs": [
            "crypto/fipsmodule/rand/urandom_test.cc"
        ]
    },
    "pki_test": {
        "srcs": [
            "crypto/test/gtest_main.cc",
            "pki/cert_issuer_source_static_unittest.cc",
            "pki/certificate_unittest.cc",
            "pki/certificate_policies_unittest.cc",
            "pki/crl_unittest.cc",
            "pki/encode_values_unittest.cc",
            "pki/extended_key_usage_unittest.cc",
            "pki/general_names_unittest.cc",
            "pki/input_unittest.cc",
            "pki/ip_util_unittest.cc",
            "pki/mock_signature_verify_cache.cc",
            "pki/name_constraints_unittest.cc",
            "pki/nist_pkits_unittest.cc",
            "pki/ocsp_unittest.cc",
            "pki/parse_certificate_unittest.cc",
            "pki/parse_name_unittest.cc",
            "pki/parse_values_unittest.cc",
            "pki/parsed_certificate_unittest.cc",
            "pki/parser_unittest.cc",
            "pki/path_builder_pkits_unittest.cc",
            "pki/path_builder_unittest.cc",
            "pki/path_builder_verify_certificate_chain_unittest.cc",
            "pki/pem_unittest.cc",
            "pki/signature_algorithm_unittest.cc",
            "pki/simple_path_builder_delegate_unittest.cc",
            "pki/string_util_unittest.cc",
            "pki/test_helpers.cc",
            "pki/trust_store_collection_unittest.cc",
            "pki/trust_store_in_memory_unittest.cc",
            "pki/verify_certificate_chain_pkits_unittest.cc",
            "pki/verify_certificate_chain_unittest.cc",
            "pki/verify_name_match_unittest.cc",
            "pki/verify_signed_data_unittest.cc"
        ],
        "data": [
            "pki/testdata/cert_issuer_source_static_unittest/*.pem",
            "pki/testdata/certificate_policies_unittest/*.pem",
            "pki/testdata/crl_unittest/*.pem",
            "pki/testdata/name_constraints_unittest/*.pem",
            "pki/testdata/nist-pkits/certs/*.crt",
            "pki/testdata/nist-pkits/crls/*.crl",
            "pki/testdata/ocsp_unittest/*.pem",
            "pki/testdata/parse_certificate_unittest/*.pem",
            "pki/testdata/parse_certificate_unittest/*/*.pem",
            "pki/testdata/path_builder_unittest/*.pem",
            "pki/testdata/path_builder_unittest/*/*.pem",
            "pki/testdata/verify_certificate_chain_unittest/*/*.pem",
            "pki/testdata/verify_certificate_chain_unittest/*/*.test",
            "pki/testdata/verify_certificate_chain_unittest/pkits_errors/*.txt",
            "pki/testdata/verify_name_match_unittest/names/*.pem",
            "pki/testdata/verify_signed_data_unittest/*.pem",
            "pki/testdata/verify_unittest/google-leaf.der",
            "pki/testdata/verify_unittest/self-issued.pem"
        ]
    },
    "ssl_test": {
        "srcs": [
            "crypto/test/gtest_main.cc",
            "ssl/span_test.cc",
            "ssl/ssl_c_test.c",
            "ssl/ssl_test.cc"
        ]
    },
    "decrepit_test": {
        "srcs": [
            "crypto/test/gtest_main.cc",
            "decrepit/blowfish/blowfish_test.cc",
            "decrepit/cast/cast_test.cc",
            "decrepit/cfb/cfb_test.cc",
            "decrepit/des/des_test.cc",
            "decrepit/evp/evp_test.cc",
            "decrepit/ripemd/ripemd_test.cc",
            "decrepit/xts/xts_test.cc"
        ]
    },
    "bssl": {
        "srcs": [
            "tool/args.cc",
            "tool/ciphers.cc",
            "tool/client.cc",
            "tool/const.cc",
            "tool/digest.cc",
            "tool/fd.cc",
            "tool/file.cc",
            "tool/generate_ech.cc",
            "tool/generate_ed25519.cc",
            "tool/genrsa.cc",
            "tool/pkcs12.cc",
            "tool/rand.cc",
            "tool/server.cc",
            "tool/sign.cc",
            "tool/speed.cc",
            "tool/tool.cc",
            "tool/transport_common.cc"
        ]
    }
}