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

Side by Side Diff: tools/gn/secondary/crypto/BUILD.gn

Issue 138273007: Convert GN single-item list concat to use lists. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « tools/gn/secondary/chrome/BUILD.gn ('k') | tools/gn/secondary/ipc/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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("ssl/flags.gni") 5 import("ssl/flags.gni")
6 6
7 crypto_minimal_sources = [ 7 crypto_minimal_sources = [
8 "hmac.cc", 8 "hmac.cc",
9 "hmac.h", 9 "hmac.h",
10 "hmac_win.cc", 10 "hmac_win.cc",
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 ] 130 ]
131 } 131 }
132 if (!is_win) { 132 if (!is_win) {
133 sources -= [ 133 sources -= [
134 "capi_util.cc", 134 "capi_util.cc",
135 "capi_util.h", 135 "capi_util.h",
136 ] 136 ]
137 } 137 }
138 138
139 if (use_nss) { 139 if (use_nss) {
140 configs += "//third_party/nss:nss_linux_config" 140 configs += [ "//third_party/nss:nss_linux_config" ]
141 } else { 141 } else {
142 sources -= [ 142 sources -= [
143 "ec_private_key_nss.cc", 143 "ec_private_key_nss.cc",
144 "ec_signature_creator_nss.cc", 144 "ec_signature_creator_nss.cc",
145 "encryptor_nss.cc", 145 "encryptor_nss.cc",
146 "hmac_nss.cc", 146 "hmac_nss.cc",
147 "nss_util.cc", 147 "nss_util.cc",
148 "nss_util.h", 148 "nss_util.h",
149 "rsa_private_key_nss.cc", 149 "rsa_private_key_nss.cc",
150 "secure_hash_default.cc", 150 "secure_hash_default.cc",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 "//base/test:run_all_unittests", 236 "//base/test:run_all_unittests",
237 "//base/test:test_support_base", 237 "//base/test:test_support_base",
238 "//testing/gmock", 238 "//testing/gmock",
239 "//testing/gtest", 239 "//testing/gtest",
240 ] 240 ]
241 241
242 if (is_mac) { 242 if (is_mac) {
243 #deps += "//third_party/nss:nspr" 243 #deps += "//third_party/nss:nspr"
244 } 244 }
245 } 245 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/chrome/BUILD.gn ('k') | tools/gn/secondary/ipc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698