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

Side by Side Diff: net/BUILD.gn

Issue 2906633003: Add a build flag to configure bundling of HSTS preload list (Closed)
Patch Set: change flag to INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST Created 3 years, 6 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/features.gni » ('j') | net/features.gni » ('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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 buildflag_header("features") { 47 buildflag_header("features") {
48 header = "net_features.h" 48 header = "net_features.h"
49 flags = [ 49 flags = [
50 "POSIX_AVOID_MMAP=$posix_avoid_mmap", 50 "POSIX_AVOID_MMAP=$posix_avoid_mmap",
51 "DISABLE_FILE_SUPPORT=$disable_file_support", 51 "DISABLE_FILE_SUPPORT=$disable_file_support",
52 "DISABLE_FTP_SUPPORT=$disable_ftp_support", 52 "DISABLE_FTP_SUPPORT=$disable_ftp_support",
53 "ENABLE_MDNS=$enable_mdns", 53 "ENABLE_MDNS=$enable_mdns",
54 "ENABLE_WEBSOCKETS=$enable_websockets", 54 "ENABLE_WEBSOCKETS=$enable_websockets",
55 "USE_BYTE_CERTS=$use_byte_certs", 55 "USE_BYTE_CERTS=$use_byte_certs",
56 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_s tate_preload_list",
56 ] 57 ]
57 } 58 }
58 59
59 config("net_internal_config") { 60 config("net_internal_config") {
60 defines = [ 61 defines = [
61 "DLOPEN_KERBEROS", 62 "DLOPEN_KERBEROS",
62 "NET_IMPLEMENTATION", 63 "NET_IMPLEMENTATION",
63 ] 64 ]
64 65
65 if (use_kerberos) { 66 if (use_kerberos) {
(...skipping 5994 matching lines...) Expand 10 before | Expand all | Expand 10 after
6060 ] 6061 ]
6061 deps = [ 6062 deps = [
6062 ":net_fuzzer_test_support", 6063 ":net_fuzzer_test_support",
6063 ":test_support", 6064 ":test_support",
6064 "//base", 6065 "//base",
6065 "//net", 6066 "//net",
6066 ] 6067 ]
6067 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6068 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6068 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6069 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6069 } 6070 }
OLDNEW
« no previous file with comments | « no previous file | net/features.gni » ('j') | net/features.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698