| 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 14 matching lines...) Expand all Loading... |
| 25 "webcrypto_impl.cc", | 25 "webcrypto_impl.cc", |
| 26 "webcrypto_impl.h", | 26 "webcrypto_impl.h", |
| 27 "webcrypto_util.cc", | 27 "webcrypto_util.cc", |
| 28 "webcrypto_util.h", | 28 "webcrypto_util.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//crypto", | 33 "//crypto", |
| 34 "//crypto:platform", | 34 "//crypto:platform", |
| 35 "//third_party/WebKit/public:blink", |
| 35 ] | 36 ] |
| 36 | 37 |
| 37 if (!use_openssl) { | 38 if (!use_openssl) { |
| 38 sources += [ | 39 sources += [ |
| 39 "nss/aes_algorithm_nss.cc", | 40 "nss/aes_algorithm_nss.cc", |
| 40 "nss/aes_algorithm_nss.h", | 41 "nss/aes_algorithm_nss.h", |
| 41 "nss/aes_cbc_nss.cc", | 42 "nss/aes_cbc_nss.cc", |
| 42 "nss/aes_gcm_nss.cc", | 43 "nss/aes_gcm_nss.cc", |
| 43 "nss/aes_kw_nss.cc", | 44 "nss/aes_kw_nss.cc", |
| 44 "nss/hmac_nss.cc", | 45 "nss/hmac_nss.cc", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 ":webcrypto", | 109 ":webcrypto", |
| 109 "//base/test:test_support", | 110 "//base/test:test_support", |
| 110 "//crypto", | 111 "//crypto", |
| 111 "//crypto:platform", | 112 "//crypto:platform", |
| 112 "//testing/perf", | 113 "//testing/perf", |
| 113 "//testing/gtest", | 114 "//testing/gtest", |
| 114 "//third_party/WebKit/public:blink", | 115 "//third_party/WebKit/public:blink", |
| 115 "//third_party/re2", | 116 "//third_party/re2", |
| 116 ] | 117 ] |
| 117 } | 118 } |
| OLD | NEW |