Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / boringssl / src / crypto / cipher / CMakeLists.txt
1 include_directories(. .. ../../include)
2
3 add_library(
4         cipher
5
6         OBJECT
7
8         cipher.c
9         cipher_error.c
10         derive_key.c
11         aead.c
12
13         e_null.c
14         e_rc4.c
15         e_des.c
16         e_aes.c
17         e_chacha20poly1305.c
18 )
19
20 add_executable(
21         cipher_test
22
23         cipher_test.c
24 )
25
26 add_executable(
27         aead_test
28
29         aead_test.c
30 )
31
32 target_link_libraries(cipher_test crypto)
33 target_link_libraries(aead_test crypto)