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 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("webcrypto") { | 8 source_set("webcrypto") { |
9 sources = [ | 9 sources = [ |
10 "algorithm_dispatch.cc", | 10 "algorithm_dispatch.cc", |
(...skipping 16 matching lines...) Expand all Loading... |
27 "algorithms/hkdf.cc", | 27 "algorithms/hkdf.cc", |
28 "algorithms/hmac.cc", | 28 "algorithms/hmac.cc", |
29 "algorithms/pbkdf2.cc", | 29 "algorithms/pbkdf2.cc", |
30 "algorithms/rsa.cc", | 30 "algorithms/rsa.cc", |
31 "algorithms/rsa.h", | 31 "algorithms/rsa.h", |
32 "algorithms/rsa_oaep.cc", | 32 "algorithms/rsa_oaep.cc", |
33 "algorithms/rsa_pss.cc", | 33 "algorithms/rsa_pss.cc", |
34 "algorithms/rsa_sign.cc", | 34 "algorithms/rsa_sign.cc", |
35 "algorithms/rsa_sign.h", | 35 "algorithms/rsa_sign.h", |
36 "algorithms/rsa_ssa.cc", | 36 "algorithms/rsa_ssa.cc", |
| 37 "algorithms/secret_key_util.cc", |
| 38 "algorithms/secret_key_util.h", |
37 "algorithms/sha.cc", | 39 "algorithms/sha.cc", |
38 "algorithms/util_openssl.cc", | 40 "algorithms/util_openssl.cc", |
39 "algorithms/util_openssl.h", | 41 "algorithms/util_openssl.h", |
40 "crypto_data.cc", | 42 "crypto_data.cc", |
41 "crypto_data.h", | 43 "crypto_data.h", |
42 "generate_key_result.cc", | 44 "generate_key_result.cc", |
43 "generate_key_result.h", | 45 "generate_key_result.h", |
44 "jwk.cc", | 46 "jwk.cc", |
45 "jwk.h", | 47 "jwk.h", |
46 "key.cc", | 48 "key.cc", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "//base/test:test_support", | 87 "//base/test:test_support", |
86 "//components/test_runner:test_runner", | 88 "//components/test_runner:test_runner", |
87 "//crypto", | 89 "//crypto", |
88 "//crypto:platform", | 90 "//crypto:platform", |
89 "//testing/perf", | 91 "//testing/perf", |
90 "//testing/gtest", | 92 "//testing/gtest", |
91 "//third_party/WebKit/public:blink", | 93 "//third_party/WebKit/public:blink", |
92 "//third_party/re2", | 94 "//third_party/re2", |
93 ] | 95 ] |
94 } | 96 } |
OLD | NEW |