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

Side by Side Diff: net/BUILD.gn

Issue 1304143010: Plumbing SSLPrivateKey Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing upload and refptr. Created 5 years, 2 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
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",
219 "base/openssl_private_key_store_memory.cc", 221 "base/openssl_private_key_store_memory.cc",
220 "cert/cert_database_openssl.cc", 222 "cert/cert_database_openssl.cc",
221 "cert/cert_verify_proc_openssl.cc", 223 "cert/cert_verify_proc_openssl.cc",
222 "cert/cert_verify_proc_openssl.h", 224 "cert/cert_verify_proc_openssl.h",
223 "cert/test_root_certs_openssl.cc", 225 "cert/test_root_certs_openssl.cc",
224 "cert/x509_certificate_openssl.cc", 226 "cert/x509_certificate_openssl.cc",
225 "ssl/openssl_client_key_store.cc",
226 "ssl/openssl_client_key_store.h",
227 ] 227 ]
228 if (is_android) { 228 if (is_android) {
229 net_shared_sources -= [ "base/openssl_private_key_store_android.cc" ] 229 net_shared_sources -= [ "base/openssl_private_key_store_android.cc" ]
230 } 230 }
231 } else { 231 } else {
232 if (is_android) { 232 if (is_android) {
233 # Android doesn't use these even when using OpenSSL. 233 # Android doesn't use these even when using OpenSSL.
234 net_shared_sources -= [ 234 net_shared_sources -= [
235 "base/openssl_private_key_store_memory.cc", 235 "base/openssl_private_key_store_memory.cc",
236 "cert/cert_database_openssl.cc", 236 "cert/cert_database_openssl.cc",
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 if (!use_kerberos) { 1423 if (!use_kerberos) {
1424 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ] 1424 sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
1425 } 1425 }
1426 1426
1427 if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) { 1427 if (use_openssl || (!is_desktop_linux && !is_chromeos && !is_ios)) {
1428 # Only include this test when on Posix and using NSS for 1428 # Only include this test when on Posix and using NSS for
1429 # cert verification or on iOS (which also uses NSS for certs). 1429 # cert verification or on iOS (which also uses NSS for certs).
1430 sources -= [ "cert_net/nss_ocsp_unittest.cc" ] 1430 sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
1431 } 1431 }
1432 1432
1433 if (!use_openssl_certs) {
1434 sources -= [ "ssl/openssl_client_key_store_unittest.cc" ]
1435 }
1436
1437 if (!enable_websockets) { 1433 if (!enable_websockets) {
1438 sources -= [ 1434 sources -= [
1439 "server/http_connection_unittest.cc", 1435 "server/http_connection_unittest.cc",
1440 "server/http_server_response_info_unittest.cc", 1436 "server/http_server_response_info_unittest.cc",
1441 "server/http_server_unittest.cc", 1437 "server/http_server_unittest.cc",
1442 "server/web_socket_encoder_unittest.cc", 1438 "server/web_socket_encoder_unittest.cc",
1443 "websockets/websocket_basic_stream_test.cc", 1439 "websockets/websocket_basic_stream_test.cc",
1444 "websockets/websocket_channel_test.cc", 1440 "websockets/websocket_channel_test.cc",
1445 "websockets/websocket_deflate_predictor_impl_test.cc", 1441 "websockets/websocket_deflate_predictor_impl_test.cc",
1446 "websockets/websocket_deflate_stream_test.cc", 1442 "websockets/websocket_deflate_stream_test.cc",
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 if (enable_websockets) { 1634 if (enable_websockets) {
1639 sources += [ "websockets/websocket_frame_perftest.cc" ] 1635 sources += [ "websockets/websocket_frame_perftest.cc" ]
1640 } 1636 }
1641 1637
1642 if (use_v8_in_net) { 1638 if (use_v8_in_net) {
1643 deps += [ ":net_with_v8" ] 1639 deps += [ ":net_with_v8" ]
1644 } else { 1640 } else {
1645 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1641 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1646 } 1642 }
1647 } 1643 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698