Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: net/BUILD.gn

Issue 2786173003: Convert android to use X509CertificateBytes instead of X509CertificateOpenSSL. (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/cert/ct_objects_extractor.cc » ('j') | net/socket/ssl_server_socket_impl.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 23 matching lines...) Expand all
34 # So enable it for x86 only for now. 34 # So enable it for x86 only for now.
35 posix_avoid_mmap = is_android && current_cpu != "x86" 35 posix_avoid_mmap = is_android && current_cpu != "x86"
36 36
37 use_v8_in_net = !is_ios && !is_proto_quic 37 use_v8_in_net = !is_ios && !is_proto_quic
38 enable_built_in_dns = !is_ios && !is_proto_quic 38 enable_built_in_dns = !is_ios && !is_proto_quic
39 39
40 # True if certificates are represented with DER byte buffers. This can be true 40 # True if certificates are represented with DER byte buffers. This can be true
41 # in addition to use_openssl_certs or use_nss_certs, in that case byte certs 41 # in addition to use_openssl_certs or use_nss_certs, in that case byte certs
42 # are used internally but OpenSSL or NSS are used for certificate verification. 42 # are used internally but OpenSSL or NSS are used for certificate verification.
43 # TODO(mattm): crbug.com/671420: Implement and enable this for all platforms. 43 # TODO(mattm): crbug.com/671420: Implement and enable this for all platforms.
44 use_byte_certs = is_mac 44 use_byte_certs = is_mac || is_android
45 45
46 buildflag_header("features") { 46 buildflag_header("features") {
47 header = "net_features.h" 47 header = "net_features.h"
48 flags = [ 48 flags = [
49 "POSIX_AVOID_MMAP=$posix_avoid_mmap", 49 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
50 "DISABLE_FILE_SUPPORT=$disable_file_support", 50 "DISABLE_FILE_SUPPORT=$disable_file_support",
51 "DISABLE_FTP_SUPPORT=$disable_ftp_support", 51 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
52 "ENABLE_MDNS=$enable_mdns", 52 "ENABLE_MDNS=$enable_mdns",
53 "ENABLE_WEBSOCKETS=$enable_websockets", 53 "ENABLE_WEBSOCKETS=$enable_websockets",
54 "USE_BYTE_CERTS=$use_byte_certs", 54 "USE_BYTE_CERTS=$use_byte_certs",
(...skipping 5713 matching lines...) Expand 10 before | Expand all | Expand 10 after
5768 ] 5768 ]
5769 deps = [ 5769 deps = [
5770 ":net_fuzzer_test_support", 5770 ":net_fuzzer_test_support",
5771 ":test_support", 5771 ":test_support",
5772 "//base", 5772 "//base",
5773 "//net", 5773 "//net",
5774 ] 5774 ]
5775 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 5775 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
5776 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 5776 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
5777 } 5777 }
OLDNEW
« no previous file with comments | « no previous file | net/cert/ct_objects_extractor.cc » ('j') | net/socket/ssl_server_socket_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698