| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'webcrypto', | |
| 9 'type': 'static_library', | |
| 10 'dependencies': [ | |
| 11 '../../base/base.gyp:base', | |
| 12 '../../crypto/crypto.gyp:crypto', | |
| 13 '../../third_party/boringssl/boringssl.gyp:boringssl', | |
| 14 '../../third_party/WebKit/public/blink.gyp:blink', | |
| 15 ], | |
| 16 'include_dirs': [ | |
| 17 '..', | |
| 18 ], | |
| 19 'sources': [ | |
| 20 'algorithm_dispatch.cc', | |
| 21 'algorithm_dispatch.h', | |
| 22 'algorithm_implementation.cc', | |
| 23 'algorithm_implementation.h', | |
| 24 'algorithm_implementations.h', | |
| 25 'algorithm_registry.cc', | |
| 26 'algorithm_registry.h', | |
| 27 'algorithms/aes.cc', | |
| 28 'algorithms/aes.h', | |
| 29 'algorithms/aes_cbc.cc', | |
| 30 'algorithms/aes_ctr.cc', | |
| 31 'algorithms/aes_gcm.cc', | |
| 32 'algorithms/aes_kw.cc', | |
| 33 'algorithms/asymmetric_key_util.cc', | |
| 34 'algorithms/asymmetric_key_util.h', | |
| 35 'algorithms/ec.cc', | |
| 36 'algorithms/ec.h', | |
| 37 'algorithms/ecdh.cc', | |
| 38 'algorithms/ecdsa.cc', | |
| 39 'algorithms/hkdf.cc', | |
| 40 'algorithms/hmac.cc', | |
| 41 'algorithms/pbkdf2.cc', | |
| 42 'algorithms/rsa.cc', | |
| 43 'algorithms/rsa.h', | |
| 44 'algorithms/rsa_oaep.cc', | |
| 45 'algorithms/rsa_pss.cc', | |
| 46 'algorithms/rsa_sign.cc', | |
| 47 'algorithms/rsa_sign.h', | |
| 48 'algorithms/rsa_ssa.cc', | |
| 49 'algorithms/secret_key_util.cc', | |
| 50 'algorithms/secret_key_util.h', | |
| 51 'algorithms/sha.cc', | |
| 52 'algorithms/util.cc', | |
| 53 'algorithms/util.h', | |
| 54 'blink_key_handle.cc', | |
| 55 'blink_key_handle.h', | |
| 56 'crypto_data.cc', | |
| 57 'crypto_data.h', | |
| 58 'generate_key_result.cc', | |
| 59 'generate_key_result.h', | |
| 60 'jwk.cc', | |
| 61 'jwk.h', | |
| 62 'status.cc', | |
| 63 'status.h', | |
| 64 'webcrypto_impl.cc', | |
| 65 'webcrypto_impl.h', | |
| 66 ], | |
| 67 }, | |
| 68 ], | |
| 69 } | |
| OLD | NEW |