| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 | 10 |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 "quic/crypto/aead_base_decrypter_openssl.cc", | 257 "quic/crypto/aead_base_decrypter_openssl.cc", |
| 258 "quic/crypto/aead_base_encrypter_openssl.cc", | 258 "quic/crypto/aead_base_encrypter_openssl.cc", |
| 259 "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc", | 259 "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc", |
| 260 "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc", | 260 "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc", |
| 261 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", | 261 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", |
| 262 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", | 262 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", |
| 263 "quic/crypto/channel_id_openssl.cc", | 263 "quic/crypto/channel_id_openssl.cc", |
| 264 "quic/crypto/p256_key_exchange_openssl.cc", | 264 "quic/crypto/p256_key_exchange_openssl.cc", |
| 265 "quic/crypto/scoped_evp_aead_ctx.cc", | 265 "quic/crypto/scoped_evp_aead_ctx.cc", |
| 266 "quic/crypto/scoped_evp_aead_ctx.h", | 266 "quic/crypto/scoped_evp_aead_ctx.h", |
| 267 "socket/openssl_ssl_util.cc", | |
| 268 "socket/openssl_ssl_util.h", | |
| 269 "socket/ssl_client_socket_openssl.cc", | 267 "socket/ssl_client_socket_openssl.cc", |
| 270 "socket/ssl_client_socket_openssl.h", | 268 "socket/ssl_client_socket_openssl.h", |
| 271 "socket/ssl_server_socket_openssl.cc", | 269 "socket/ssl_server_socket_openssl.cc", |
| 272 "socket/ssl_server_socket_openssl.h", | 270 "socket/ssl_server_socket_openssl.h", |
| 273 "socket/ssl_session_cache_openssl.cc", | 271 "socket/ssl_session_cache_openssl.cc", |
| 274 "socket/ssl_session_cache_openssl.h", | 272 "socket/ssl_session_cache_openssl.h", |
| 273 "ssl/openssl_platform_key_mac.cc", |
| 274 "ssl/openssl_platform_key_win.cc", |
| 275 "ssl/openssl_platform_key.h", |
| 276 "ssl/openssl_ssl_util.cc", |
| 277 "ssl/openssl_ssl_util.h", |
| 275 ] | 278 ] |
| 276 } | 279 } |
| 277 | 280 |
| 278 if (!use_openssl_certs) { | 281 if (!use_openssl_certs) { |
| 279 sources -= [ | 282 sources -= [ |
| 280 "base/openssl_private_key_store.h", | 283 "base/openssl_private_key_store.h", |
| 281 "base/openssl_private_key_store_memory.cc", | 284 "base/openssl_private_key_store_memory.cc", |
| 282 "cert/cert_database_openssl.cc", | 285 "cert/cert_database_openssl.cc", |
| 283 "cert/cert_verify_proc_openssl.cc", | 286 "cert/cert_verify_proc_openssl.cc", |
| 284 "cert/cert_verify_proc_openssl.h", | 287 "cert/cert_verify_proc_openssl.h", |
| (...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 sources = [ "quic/quic_server_bin.cc" ] | 1323 sources = [ "quic/quic_server_bin.cc" ] |
| 1321 deps = [ | 1324 deps = [ |
| 1322 ":quic_tools", | 1325 ":quic_tools", |
| 1323 ":net", | 1326 ":net", |
| 1324 "//base", | 1327 "//base", |
| 1325 "//third_party/openssl", | 1328 "//third_party/openssl", |
| 1326 ] | 1329 ] |
| 1327 } | 1330 } |
| 1328 | 1331 |
| 1329 } # !is_android | 1332 } # !is_android |
| OLD | NEW |