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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 use_v8_in_net = !is_ios | 40 use_v8_in_net = !is_ios |
41 enable_built_in_dns = !is_ios | 41 enable_built_in_dns = !is_ios |
42 | 42 |
43 buildflag_header("features") { | 43 buildflag_header("features") { |
44 header = "net_features.h" | 44 header = "net_features.h" |
45 flags = [ | 45 flags = [ |
46 "POSIX_AVOID_MMAP=$posix_avoid_mmap", | 46 "POSIX_AVOID_MMAP=$posix_avoid_mmap", |
47 "DISABLE_FILE_SUPPORT=$disable_file_support", | 47 "DISABLE_FILE_SUPPORT=$disable_file_support", |
48 "DISABLE_FTP_SUPPORT=$disable_ftp_support", | 48 "DISABLE_FTP_SUPPORT=$disable_ftp_support", |
| 49 "ENABLE_MDNS=$enable_mdns", |
49 "ENABLE_WEBSOCKETS=$enable_websockets", | 50 "ENABLE_WEBSOCKETS=$enable_websockets", |
50 ] | 51 ] |
51 } | 52 } |
52 | 53 |
53 config("net_internal_config") { | 54 config("net_internal_config") { |
54 defines = [ | 55 defines = [ |
55 "DLOPEN_KERBEROS", | 56 "DLOPEN_KERBEROS", |
56 "NET_IMPLEMENTATION", | 57 "NET_IMPLEMENTATION", |
57 ] | 58 ] |
58 | 59 |
(...skipping 1982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2041 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2042 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
2042 ] | 2043 ] |
2043 deps = [ | 2044 deps = [ |
2044 ":net_fuzzer_test_support", | 2045 ":net_fuzzer_test_support", |
2045 "//base", | 2046 "//base", |
2046 "//net", | 2047 "//net", |
2047 "//url", | 2048 "//url", |
2048 ] | 2049 ] |
2049 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2050 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
2050 } | 2051 } |
OLD | NEW |