OLD | NEW |
1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This file is created by generate_build_files.py. Do not edit manually. | 5 # This file is created by generate_build_files.py. Do not edit manually. |
6 | 6 |
7 crypto_sources = [ | 7 crypto_sources = [ |
8 "err_data.c", | 8 "err_data.c", |
9 "src/crypto/aes/aes.c", | 9 "src/crypto/aes/aes.c", |
10 "src/crypto/aes/mode_wrappers.c", | 10 "src/crypto/aes/mode_wrappers.c", |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 "mac-x86_64/crypto/chacha/chacha-x86_64.S", | 406 "mac-x86_64/crypto/chacha/chacha-x86_64.S", |
407 "mac-x86_64/crypto/ec/p256-x86_64-asm.S", | 407 "mac-x86_64/crypto/ec/p256-x86_64-asm.S", |
408 "mac-x86_64/crypto/md5/md5-x86_64.S", | 408 "mac-x86_64/crypto/md5/md5-x86_64.S", |
409 "mac-x86_64/crypto/modes/aesni-gcm-x86_64.S", | 409 "mac-x86_64/crypto/modes/aesni-gcm-x86_64.S", |
410 "mac-x86_64/crypto/modes/ghash-x86_64.S", | 410 "mac-x86_64/crypto/modes/ghash-x86_64.S", |
411 "mac-x86_64/crypto/rand/rdrand-x86_64.S", | 411 "mac-x86_64/crypto/rand/rdrand-x86_64.S", |
412 "mac-x86_64/crypto/rc4/rc4-x86_64.S", | 412 "mac-x86_64/crypto/rc4/rc4-x86_64.S", |
413 "mac-x86_64/crypto/sha/sha1-x86_64.S", | 413 "mac-x86_64/crypto/sha/sha1-x86_64.S", |
414 "mac-x86_64/crypto/sha/sha256-x86_64.S", | 414 "mac-x86_64/crypto/sha/sha256-x86_64.S", |
415 "mac-x86_64/crypto/sha/sha512-x86_64.S", | 415 "mac-x86_64/crypto/sha/sha512-x86_64.S", |
| 416 "src/crypto/curve25519/asm/x25519-asm-x86_64.S", |
416 ] | 417 ] |
417 | 418 |
418 crypto_sources_win_x86 = [ | 419 crypto_sources_win_x86 = [ |
419 "win-x86/crypto/aes/aes-586.asm", | 420 "win-x86/crypto/aes/aes-586.asm", |
420 "win-x86/crypto/aes/aesni-x86.asm", | 421 "win-x86/crypto/aes/aesni-x86.asm", |
421 "win-x86/crypto/aes/vpaes-x86.asm", | 422 "win-x86/crypto/aes/vpaes-x86.asm", |
422 "win-x86/crypto/bn/bn-586.asm", | 423 "win-x86/crypto/bn/bn-586.asm", |
423 "win-x86/crypto/bn/co-586.asm", | 424 "win-x86/crypto/bn/co-586.asm", |
424 "win-x86/crypto/bn/x86-mont.asm", | 425 "win-x86/crypto/bn/x86-mont.asm", |
425 "win-x86/crypto/chacha/chacha-x86.asm", | 426 "win-x86/crypto/chacha/chacha-x86.asm", |
(...skipping 28 matching lines...) Expand all Loading... |
454 | 455 |
455 fuzzers = [ | 456 fuzzers = [ |
456 "cert", | 457 "cert", |
457 "client", | 458 "client", |
458 "pkcs8", | 459 "pkcs8", |
459 "privkey", | 460 "privkey", |
460 "read_pem", | 461 "read_pem", |
461 "server", | 462 "server", |
462 "spki", | 463 "spki", |
463 ] | 464 ] |
OLD | NEW |