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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |