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

Side by Side Diff: net/BUILD.gn

Issue 1422573008: Plumbing SSLPrivateKey (//net) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing extra tab. Created 5 years, 1 month 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
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("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "quic/crypto/scoped_evp_aead_ctx.h", 199 "quic/crypto/scoped_evp_aead_ctx.h",
200 "socket/ssl_client_socket_openssl.cc", 200 "socket/ssl_client_socket_openssl.cc",
201 "socket/ssl_client_socket_openssl.h", 201 "socket/ssl_client_socket_openssl.h",
202 "socket/ssl_server_socket_openssl.cc", 202 "socket/ssl_server_socket_openssl.cc",
203 "socket/ssl_server_socket_openssl.h", 203 "socket/ssl_server_socket_openssl.h",
204 "ssl/openssl_ssl_util.cc", 204 "ssl/openssl_ssl_util.cc",
205 "ssl/openssl_ssl_util.h", 205 "ssl/openssl_ssl_util.h",
206 "ssl/ssl_client_session_cache_openssl.cc", 206 "ssl/ssl_client_session_cache_openssl.cc",
207 "ssl/ssl_client_session_cache_openssl.h", 207 "ssl/ssl_client_session_cache_openssl.h",
208 "ssl/ssl_platform_key.h", 208 "ssl/ssl_platform_key.h",
209 "ssl/ssl_platform_key_task_runner.cc",
210 "ssl/ssl_platform_key_task_runner.h",
209 "ssl/threaded_ssl_private_key.cc", 211 "ssl/threaded_ssl_private_key.cc",
210 "ssl/threaded_ssl_private_key.h", 212 "ssl/threaded_ssl_private_key.h",
211 ] 213 ]
212 } 214 }
213 215
214 if (!use_openssl_certs) { 216 if (!use_openssl_certs) {
215 net_shared_sources -= [ 217 net_shared_sources -= [
216 "base/crypto_module_openssl.cc", 218 "base/crypto_module_openssl.cc",
217 "base/keygen_handler_openssl.cc", 219 "base/keygen_handler_openssl.cc",
218 "base/openssl_private_key_store.h", 220 "base/openssl_private_key_store.h",
(...skipping 1454 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 if (enable_websockets) { 1675 if (enable_websockets) {
1674 sources += [ "websockets/websocket_frame_perftest.cc" ] 1676 sources += [ "websockets/websocket_frame_perftest.cc" ]
1675 } 1677 }
1676 1678
1677 if (use_v8_in_net) { 1679 if (use_v8_in_net) {
1678 deps += [ ":net_with_v8" ] 1680 deps += [ ":net_with_v8" ]
1679 } else { 1681 } else {
1680 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1682 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1681 } 1683 }
1682 } 1684 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698