Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(864)

Side by Side Diff: components/webcrypto/BUILD.gn

Issue 1217593005: Fix gn check errors for webcrypto component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn3
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698