| 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 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 "quic/crypto/aead_base_decrypter_openssl.cc", | 251 "quic/crypto/aead_base_decrypter_openssl.cc", |
| 252 "quic/crypto/aead_base_encrypter_openssl.cc", | 252 "quic/crypto/aead_base_encrypter_openssl.cc", |
| 253 "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc", | 253 "quic/crypto/aes_128_gcm_12_decrypter_openssl.cc", |
| 254 "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc", | 254 "quic/crypto/aes_128_gcm_12_encrypter_openssl.cc", |
| 255 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", | 255 "quic/crypto/chacha20_poly1305_decrypter_openssl.cc", |
| 256 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", | 256 "quic/crypto/chacha20_poly1305_encrypter_openssl.cc", |
| 257 "quic/crypto/channel_id_openssl.cc", | 257 "quic/crypto/channel_id_openssl.cc", |
| 258 "quic/crypto/p256_key_exchange_openssl.cc", | 258 "quic/crypto/p256_key_exchange_openssl.cc", |
| 259 "quic/crypto/scoped_evp_aead_ctx.cc", | 259 "quic/crypto/scoped_evp_aead_ctx.cc", |
| 260 "quic/crypto/scoped_evp_aead_ctx.h", | 260 "quic/crypto/scoped_evp_aead_ctx.h", |
| 261 "socket/openssl_ssl_util.cc", |
| 262 "socket/openssl_ssl_util.h", |
| 261 "socket/ssl_client_socket_openssl.cc", | 263 "socket/ssl_client_socket_openssl.cc", |
| 262 "socket/ssl_client_socket_openssl.h", | 264 "socket/ssl_client_socket_openssl.h", |
| 263 "socket/ssl_server_socket_openssl.cc", | 265 "socket/ssl_server_socket_openssl.cc", |
| 266 "socket/ssl_server_socket_openssl.h", |
| 264 "socket/ssl_session_cache_openssl.cc", | 267 "socket/ssl_session_cache_openssl.cc", |
| 265 "socket/ssl_session_cache_openssl.h", | 268 "socket/ssl_session_cache_openssl.h", |
| 266 ] | 269 ] |
| 267 } | 270 } |
| 268 | 271 |
| 269 if (!use_openssl_certs) { | 272 if (!use_openssl_certs) { |
| 270 sources -= [ | 273 sources -= [ |
| 271 "base/openssl_private_key_store.h", | 274 "base/openssl_private_key_store.h", |
| 272 "base/openssl_private_key_store_memory.cc", | 275 "base/openssl_private_key_store_memory.cc", |
| 273 "cert/cert_database_openssl.cc", | 276 "cert/cert_database_openssl.cc", |
| (...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 | 946 |
| 944 if (is_android || is_linux) { | 947 if (is_android || is_linux) { |
| 945 executable("disk_cache_memory_test") { | 948 executable("disk_cache_memory_test") { |
| 946 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] | 949 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] |
| 947 deps = [ | 950 deps = [ |
| 948 ":net", | 951 ":net", |
| 949 "//base", | 952 "//base", |
| 950 ] | 953 ] |
| 951 } | 954 } |
| 952 } | 955 } |
| OLD | NEW |