Upstream version 10.39.225.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_rc2.c
15         e_rc4.c
16         e_des.c
17         e_aes.c
18         e_chacha20poly1305.c
19 )
20
21 add_executable(
22         cipher_test
23
24         cipher_test.c
25 )
26
27 add_executable(
28         aead_test
29
30         aead_test.c
31 )
32
33 target_link_libraries(cipher_test crypto)
34 target_link_libraries(aead_test crypto)