OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'webcrypto', | 8 'target_name': 'webcrypto', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../../base/base.gyp:base', | 11 '../../base/base.gyp:base', |
12 '../../crypto/crypto.gyp:crypto', | 12 '../../crypto/crypto.gyp:crypto', |
13 '../../third_party/boringssl/boringssl.gyp:boringssl', | 13 '../../third_party/boringssl/boringssl.gyp:boringssl', |
14 '../../third_party/WebKit/public/blink.gyp:blink', | 14 '../../third_party/WebKit/public/blink.gyp:blink', |
15 ], | 15 ], |
16 'include_dirs': [ | 16 'include_dirs': [ |
17 '..', | 17 '..', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'algorithm_dispatch.cc', | 20 'algorithm_dispatch.cc', |
21 'algorithm_dispatch.h', | 21 'algorithm_dispatch.h', |
22 'algorithm_implementation.cc', | 22 'algorithm_implementation.cc', |
23 'algorithm_implementation.h', | 23 'algorithm_implementation.h', |
24 'algorithm_registry.cc', | 24 'algorithm_registry.cc', |
25 'algorithm_registry.h', | 25 'algorithm_registry.h', |
| 26 'algorithms/aes.cc', |
| 27 'algorithms/aes.h', |
| 28 'algorithms/aes_cbc.cc', |
| 29 'algorithms/aes_ctr.cc', |
| 30 'algorithms/aes_gcm.cc', |
| 31 'algorithms/aes_kw.cc', |
| 32 'algorithms/ec.cc', |
| 33 'algorithms/ec.h', |
| 34 'algorithms/ecdh.cc', |
| 35 'algorithms/ecdsa.cc', |
| 36 'algorithms/hkdf.cc', |
| 37 'algorithms/hmac.cc', |
| 38 'algorithms/key.cc', |
| 39 'algorithms/key.h', |
| 40 'algorithms/pbkdf2.cc', |
| 41 'algorithms/rsa.cc', |
| 42 'algorithms/rsa.h', |
| 43 'algorithms/rsa_oaep.cc', |
| 44 'algorithms/rsa_pss.cc', |
| 45 'algorithms/rsa_sign.cc', |
| 46 'algorithms/rsa_sign.h', |
| 47 'algorithms/rsa_ssa.cc', |
| 48 'algorithms/sha.cc', |
| 49 'algorithms/util_openssl.cc', |
| 50 'algorithms/util_openssl.h', |
26 'crypto_data.cc', | 51 'crypto_data.cc', |
27 'crypto_data.h', | 52 'crypto_data.h', |
28 'generate_key_result.cc', | 53 'generate_key_result.cc', |
29 'generate_key_result.h', | 54 'generate_key_result.h', |
30 'jwk.cc', | 55 'jwk.cc', |
31 'jwk.h', | 56 'jwk.h', |
32 'openssl/aes_algorithm_openssl.cc', | |
33 'openssl/aes_algorithm_openssl.h', | |
34 'openssl/aes_cbc_openssl.cc', | |
35 'openssl/aes_ctr_openssl.cc', | |
36 'openssl/aes_gcm_openssl.cc', | |
37 'openssl/aes_kw_openssl.cc', | |
38 'openssl/ec_algorithm_openssl.cc', | |
39 'openssl/ec_algorithm_openssl.h', | |
40 'openssl/ecdh_openssl.cc', | |
41 'openssl/ecdsa_openssl.cc', | |
42 'openssl/hkdf_openssl.cc', | |
43 'openssl/hmac_openssl.cc', | |
44 'openssl/key_openssl.cc', | |
45 'openssl/key_openssl.h', | |
46 'openssl/pbkdf2_openssl.cc', | |
47 'openssl/rsa_hashed_algorithm_openssl.cc', | |
48 'openssl/rsa_hashed_algorithm_openssl.h', | |
49 'openssl/rsa_oaep_openssl.cc', | |
50 'openssl/rsa_pss_openssl.cc', | |
51 'openssl/rsa_sign_openssl.cc', | |
52 'openssl/rsa_sign_openssl.h', | |
53 'openssl/rsa_ssa_openssl.cc', | |
54 'openssl/sha_openssl.cc', | |
55 'openssl/util_openssl.cc', | |
56 'openssl/util_openssl.h', | |
57 'platform_crypto.h', | 57 'platform_crypto.h', |
58 'status.cc', | 58 'status.cc', |
59 'status.h', | 59 'status.h', |
60 'webcrypto_impl.cc', | 60 'webcrypto_impl.cc', |
61 'webcrypto_impl.h', | 61 'webcrypto_impl.h', |
62 'webcrypto_util.cc', | 62 'webcrypto_util.cc', |
63 'webcrypto_util.h', | 63 'webcrypto_util.h', |
64 ], | 64 ], |
65 }, | 65 }, |
66 ], | 66 ], |
67 } | 67 } |
OLD | NEW |