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/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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_REPORTING=$enable_reporting", | 54 "ENABLE_REPORTING=$enable_reporting", |
55 "ENABLE_WEBSOCKETS=$enable_websockets", | 55 "ENABLE_WEBSOCKETS=$enable_websockets", |
56 "USE_BYTE_CERTS=$use_byte_certs", | 56 "USE_BYTE_CERTS=$use_byte_certs", |
| 57 "INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_s
tate_preload_list", |
57 ] | 58 ] |
58 } | 59 } |
59 | 60 |
60 config("net_internal_config") { | 61 config("net_internal_config") { |
61 defines = [ | 62 defines = [ |
62 "DLOPEN_KERBEROS", | 63 "DLOPEN_KERBEROS", |
63 "NET_IMPLEMENTATION", | 64 "NET_IMPLEMENTATION", |
64 ] | 65 ] |
65 | 66 |
66 if (use_kerberos) { | 67 if (use_kerberos) { |
(...skipping 5984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6051 ] | 6052 ] |
6052 deps = [ | 6053 deps = [ |
6053 ":net_fuzzer_test_support", | 6054 ":net_fuzzer_test_support", |
6054 ":test_support", | 6055 ":test_support", |
6055 "//base", | 6056 "//base", |
6056 "//net", | 6057 "//net", |
6057 ] | 6058 ] |
6058 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6059 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
6059 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6060 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
6060 } | 6061 } |
OLD | NEW |