OLD | NEW |
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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 "quic/crypto/scoped_evp_aead_ctx.h", | 202 "quic/crypto/scoped_evp_aead_ctx.h", |
203 "socket/ssl_client_socket_openssl.cc", | 203 "socket/ssl_client_socket_openssl.cc", |
204 "socket/ssl_client_socket_openssl.h", | 204 "socket/ssl_client_socket_openssl.h", |
205 "socket/ssl_server_socket_openssl.cc", | 205 "socket/ssl_server_socket_openssl.cc", |
206 "socket/ssl_server_socket_openssl.h", | 206 "socket/ssl_server_socket_openssl.h", |
207 "ssl/openssl_ssl_util.cc", | 207 "ssl/openssl_ssl_util.cc", |
208 "ssl/openssl_ssl_util.h", | 208 "ssl/openssl_ssl_util.h", |
209 "ssl/ssl_client_session_cache_openssl.cc", | 209 "ssl/ssl_client_session_cache_openssl.cc", |
210 "ssl/ssl_client_session_cache_openssl.h", | 210 "ssl/ssl_client_session_cache_openssl.h", |
211 "ssl/ssl_platform_key.h", | 211 "ssl/ssl_platform_key.h", |
| 212 "ssl/ssl_platform_key_task_runner.cc", |
| 213 "ssl/ssl_platform_key_task_runner.h", |
212 "ssl/threaded_ssl_private_key.cc", | 214 "ssl/threaded_ssl_private_key.cc", |
213 "ssl/threaded_ssl_private_key.h", | 215 "ssl/threaded_ssl_private_key.h", |
214 ] | 216 ] |
215 } | 217 } |
216 | 218 |
217 if (!use_openssl_certs) { | 219 if (!use_openssl_certs) { |
218 net_shared_sources -= [ | 220 net_shared_sources -= [ |
219 "base/crypto_module_openssl.cc", | 221 "base/crypto_module_openssl.cc", |
220 "base/keygen_handler_openssl.cc", | 222 "base/keygen_handler_openssl.cc", |
221 "base/openssl_private_key_store.h", | 223 "base/openssl_private_key_store.h", |
(...skipping 1439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1661 if (enable_websockets) { | 1663 if (enable_websockets) { |
1662 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1664 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1663 } | 1665 } |
1664 | 1666 |
1665 if (use_v8_in_net) { | 1667 if (use_v8_in_net) { |
1666 deps += [ ":net_with_v8" ] | 1668 deps += [ ":net_with_v8" ] |
1667 } else { | 1669 } else { |
1668 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1670 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1669 } | 1671 } |
1670 } | 1672 } |
OLD | NEW |