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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "quic/crypto/chacha20_poly1305_encrypter_nss.cc", | 164 "quic/crypto/chacha20_poly1305_encrypter_nss.cc", |
165 "quic/crypto/channel_id_nss.cc", | 165 "quic/crypto/channel_id_nss.cc", |
166 "quic/crypto/p256_key_exchange_nss.cc", | 166 "quic/crypto/p256_key_exchange_nss.cc", |
167 "quic/crypto/proof_source_chromium_nss.cc", | 167 "quic/crypto/proof_source_chromium_nss.cc", |
168 "socket/nss_ssl_util.cc", | 168 "socket/nss_ssl_util.cc", |
169 "socket/nss_ssl_util.h", | 169 "socket/nss_ssl_util.h", |
170 "socket/ssl_client_socket_nss.cc", | 170 "socket/ssl_client_socket_nss.cc", |
171 "socket/ssl_client_socket_nss.h", | 171 "socket/ssl_client_socket_nss.h", |
172 "socket/ssl_server_socket_nss.cc", | 172 "socket/ssl_server_socket_nss.cc", |
173 "socket/ssl_server_socket_nss.h", | 173 "socket/ssl_server_socket_nss.h", |
| 174 "ssl/token_binding_nss.cc", |
174 ] | 175 ] |
175 if (is_ios) { | 176 if (is_ios) { |
176 # Always removed for !ios below. | 177 # Always removed for !ios below. |
177 net_shared_sources -= [ | 178 net_shared_sources -= [ |
178 "cert/cert_verify_proc_nss.cc", | 179 "cert/cert_verify_proc_nss.cc", |
179 "cert/cert_verify_proc_nss.h", | 180 "cert/cert_verify_proc_nss.h", |
180 ] | 181 ] |
181 } | 182 } |
182 if (!use_nss_certs && !is_ios) { | 183 if (!use_nss_certs && !is_ios) { |
183 net_shared_sources -= [ "cert/x509_util_nss.h" ] | 184 net_shared_sources -= [ "cert/x509_util_nss.h" ] |
(...skipping 20 matching lines...) Expand all Loading... |
204 "socket/ssl_client_socket_openssl.h", | 205 "socket/ssl_client_socket_openssl.h", |
205 "socket/ssl_server_socket_openssl.cc", | 206 "socket/ssl_server_socket_openssl.cc", |
206 "socket/ssl_server_socket_openssl.h", | 207 "socket/ssl_server_socket_openssl.h", |
207 "ssl/openssl_ssl_util.cc", | 208 "ssl/openssl_ssl_util.cc", |
208 "ssl/openssl_ssl_util.h", | 209 "ssl/openssl_ssl_util.h", |
209 "ssl/ssl_client_session_cache_openssl.cc", | 210 "ssl/ssl_client_session_cache_openssl.cc", |
210 "ssl/ssl_client_session_cache_openssl.h", | 211 "ssl/ssl_client_session_cache_openssl.h", |
211 "ssl/ssl_platform_key.h", | 212 "ssl/ssl_platform_key.h", |
212 "ssl/threaded_ssl_private_key.cc", | 213 "ssl/threaded_ssl_private_key.cc", |
213 "ssl/threaded_ssl_private_key.h", | 214 "ssl/threaded_ssl_private_key.h", |
| 215 "ssl/token_binding_openssl.cc", |
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", |
222 "base/openssl_private_key_store_memory.cc", | 224 "base/openssl_private_key_store_memory.cc", |
223 "cert/cert_database_openssl.cc", | 225 "cert/cert_database_openssl.cc", |
(...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1677 if (enable_websockets) { | 1679 if (enable_websockets) { |
1678 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1680 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1679 } | 1681 } |
1680 | 1682 |
1681 if (use_v8_in_net) { | 1683 if (use_v8_in_net) { |
1682 deps += [ ":net_with_v8" ] | 1684 deps += [ ":net_with_v8" ] |
1683 } else { | 1685 } else { |
1684 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1686 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1685 } | 1687 } |
1686 } | 1688 } |
OLD | NEW |