| OLD | NEW |
| 1 # Auto-generated - DO NOT EDIT! | 1 # Auto-generated - DO NOT EDIT! |
| 2 # To regenerate, edit openssl.config, then run: | 2 # To regenerate, edit openssl.config, then run: |
| 3 # ./import_openssl.sh import /path/to/openssl-1.0.1e.tar.gz | 3 # ./import_openssl.sh import /path/to/openssl-1.0.1e.tar.gz |
| 4 # | 4 # |
| 5 # Before including this file, the local Android.mk must define the following | 5 # Before including this file, the local Android.mk must define the following |
| 6 # variables: | 6 # variables: |
| 7 # | 7 # |
| 8 # local_c_flags | 8 # local_c_flags |
| 9 # local_c_includes | 9 # local_c_includes |
| 10 # local_additional_dependencies | 10 # local_additional_dependencies |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 crypto/rc4/asm/rc4-md5-x86_64.S \ | 634 crypto/rc4/asm/rc4-md5-x86_64.S \ |
| 635 crypto/rc4/asm/rc4-x86_64.S \ | 635 crypto/rc4/asm/rc4-x86_64.S \ |
| 636 crypto/sha/asm/sha1-x86_64.S \ | 636 crypto/sha/asm/sha1-x86_64.S \ |
| 637 crypto/sha/asm/sha256-x86_64.S \ | 637 crypto/sha/asm/sha256-x86_64.S \ |
| 638 crypto/sha/asm/sha512-x86_64.S \ | 638 crypto/sha/asm/sha512-x86_64.S \ |
| 639 crypto/x86_64cpuid.S \ | 639 crypto/x86_64cpuid.S \ |
| 640 | 640 |
| 641 x86_64_exclude_files := \ | 641 x86_64_exclude_files := \ |
| 642 crypto/aes/aes_cbc.c \ | 642 crypto/aes/aes_cbc.c \ |
| 643 crypto/aes/aes_core.c \ | 643 crypto/aes/aes_core.c \ |
| 644 crypto/bn/bn_asm.c \ |
| 644 crypto/mem_clr.c \ | 645 crypto/mem_clr.c \ |
| 645 crypto/rc4/rc4_enc.c \ | 646 crypto/rc4/rc4_enc.c \ |
| 647 crypto/rc4/rc4_skey.c \ |
| 646 | 648 |
| 647 mips_c_flags := \ | 649 mips_c_flags := \ |
| 648 -DAES_ASM \ | 650 -DAES_ASM \ |
| 649 -DOPENSSL_BN_ASM_MONT \ | 651 -DOPENSSL_BN_ASM_MONT \ |
| 650 -DSHA1_ASM \ | 652 -DSHA1_ASM \ |
| 651 -DSHA256_ASM \ | 653 -DSHA256_ASM \ |
| 652 | 654 |
| 653 mips_src_files := \ | 655 mips_src_files := \ |
| 654 crypto/aes/asm/aes-mips.S \ | 656 crypto/aes/asm/aes-mips.S \ |
| 655 crypto/bn/asm/bn-mips.S \ | 657 crypto/bn/asm/bn-mips.S \ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 677 host_arch := unknown_arch | 679 host_arch := unknown_arch |
| 678 endif | 680 endif |
| 679 | 681 |
| 680 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags) | 682 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags) |
| 681 host_c_includes := $(addprefix external/openssl/,$(common_c_includes)) $(local_c
_includes) | 683 host_c_includes := $(addprefix external/openssl/,$(common_c_includes)) $(local_c
_includes) |
| 682 host_src_files := $(common_src_files) $($(host_arch)_src_files) | 684 host_src_files := $(common_src_files) $($(host_arch)_src_files) |
| 683 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files)
) | 685 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files)
) |
| 684 | 686 |
| 685 local_additional_dependencies += $(LOCAL_PATH)/Crypto-config.mk | 687 local_additional_dependencies += $(LOCAL_PATH)/Crypto-config.mk |
| 686 | 688 |
| OLD | NEW |