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/module_args/v8.gni") | 10 import("//build/module_args/v8.gni") |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 "quic/crypto/chacha20_poly1305_encrypter_nss.cc", | 167 "quic/crypto/chacha20_poly1305_encrypter_nss.cc", |
168 "quic/crypto/channel_id_nss.cc", | 168 "quic/crypto/channel_id_nss.cc", |
169 "quic/crypto/p256_key_exchange_nss.cc", | 169 "quic/crypto/p256_key_exchange_nss.cc", |
170 "quic/crypto/proof_source_chromium_nss.cc", | 170 "quic/crypto/proof_source_chromium_nss.cc", |
171 "socket/nss_ssl_util.cc", | 171 "socket/nss_ssl_util.cc", |
172 "socket/nss_ssl_util.h", | 172 "socket/nss_ssl_util.h", |
173 "socket/ssl_client_socket_nss.cc", | 173 "socket/ssl_client_socket_nss.cc", |
174 "socket/ssl_client_socket_nss.h", | 174 "socket/ssl_client_socket_nss.h", |
175 "socket/ssl_server_socket_nss.cc", | 175 "socket/ssl_server_socket_nss.cc", |
176 "socket/ssl_server_socket_nss.h", | 176 "socket/ssl_server_socket_nss.h", |
| 177 "ssl/token_binding_nss.cc", |
177 ] | 178 ] |
178 if (is_ios) { | 179 if (is_ios) { |
179 # Always removed for !ios below. | 180 # Always removed for !ios below. |
180 net_shared_sources -= [ | 181 net_shared_sources -= [ |
181 "cert/cert_verify_proc_nss.cc", | 182 "cert/cert_verify_proc_nss.cc", |
182 "cert/cert_verify_proc_nss.h", | 183 "cert/cert_verify_proc_nss.h", |
183 ] | 184 ] |
184 } | 185 } |
185 if (!use_nss_certs && !is_ios) { | 186 if (!use_nss_certs && !is_ios) { |
186 net_shared_sources -= [ "cert/x509_util_nss.h" ] | 187 net_shared_sources -= [ "cert/x509_util_nss.h" ] |
(...skipping 20 matching lines...) Expand all Loading... |
207 "socket/ssl_client_socket_openssl.h", | 208 "socket/ssl_client_socket_openssl.h", |
208 "socket/ssl_server_socket_openssl.cc", | 209 "socket/ssl_server_socket_openssl.cc", |
209 "socket/ssl_server_socket_openssl.h", | 210 "socket/ssl_server_socket_openssl.h", |
210 "ssl/openssl_ssl_util.cc", | 211 "ssl/openssl_ssl_util.cc", |
211 "ssl/openssl_ssl_util.h", | 212 "ssl/openssl_ssl_util.h", |
212 "ssl/ssl_client_session_cache_openssl.cc", | 213 "ssl/ssl_client_session_cache_openssl.cc", |
213 "ssl/ssl_client_session_cache_openssl.h", | 214 "ssl/ssl_client_session_cache_openssl.h", |
214 "ssl/ssl_platform_key.h", | 215 "ssl/ssl_platform_key.h", |
215 "ssl/threaded_ssl_private_key.cc", | 216 "ssl/threaded_ssl_private_key.cc", |
216 "ssl/threaded_ssl_private_key.h", | 217 "ssl/threaded_ssl_private_key.h", |
| 218 "ssl/token_binding_openssl.cc", |
217 ] | 219 ] |
218 } | 220 } |
219 | 221 |
220 if (!use_openssl_certs) { | 222 if (!use_openssl_certs) { |
221 net_shared_sources -= [ | 223 net_shared_sources -= [ |
222 "base/crypto_module_openssl.cc", | 224 "base/crypto_module_openssl.cc", |
223 "base/keygen_handler_openssl.cc", | 225 "base/keygen_handler_openssl.cc", |
224 "base/openssl_private_key_store.h", | 226 "base/openssl_private_key_store.h", |
225 "base/openssl_private_key_store_memory.cc", | 227 "base/openssl_private_key_store_memory.cc", |
226 "cert/cert_database_openssl.cc", | 228 "cert/cert_database_openssl.cc", |
(...skipping 1421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1648 if (enable_websockets) { | 1650 if (enable_websockets) { |
1649 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1651 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1650 } | 1652 } |
1651 | 1653 |
1652 if (use_v8_in_net) { | 1654 if (use_v8_in_net) { |
1653 deps += [ ":net_with_v8" ] | 1655 deps += [ ":net_with_v8" ] |
1654 } else { | 1656 } else { |
1655 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1657 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1656 } | 1658 } |
1657 } | 1659 } |
OLD | NEW |