| 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 ] | 393 ] |
| 394 sources += [ | 394 sources += [ |
| 395 "base/filename_util_icu.cc", | 395 "base/filename_util_icu.cc", |
| 396 "base/net_string_util_icu.cc", | 396 "base/net_string_util_icu.cc", |
| 397 ] | 397 ] |
| 398 } | 398 } |
| 399 | 399 |
| 400 # Brotli support. | 400 # Brotli support. |
| 401 if (!disable_brotli_filter) { | 401 if (!disable_brotli_filter) { |
| 402 sources += [ "filter/brotli_source_stream.cc" ] | 402 sources += [ "filter/brotli_source_stream.cc" ] |
| 403 deps += [ "//third_party/brotli" ] | 403 deps += [ "//third_party/brotli:dec" ] |
| 404 } else { | 404 } else { |
| 405 sources += [ "filter/brotli_source_stream_disabled.cc" ] | 405 sources += [ "filter/brotli_source_stream_disabled.cc" ] |
| 406 } | 406 } |
| 407 } | 407 } |
| 408 } | 408 } |
| 409 | 409 |
| 410 grit("net_resources") { | 410 grit("net_resources") { |
| 411 source = "base/net_resources.grd" | 411 source = "base/net_resources.grd" |
| 412 use_qualified_include = true | 412 use_qualified_include = true |
| 413 outputs = [ | 413 outputs = [ |
| (...skipping 1653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2067 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2067 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
| 2068 ] | 2068 ] |
| 2069 deps = [ | 2069 deps = [ |
| 2070 ":net_fuzzer_test_support", | 2070 ":net_fuzzer_test_support", |
| 2071 "//base", | 2071 "//base", |
| 2072 "//net", | 2072 "//net", |
| 2073 "//url", | 2073 "//url", |
| 2074 ] | 2074 ] |
| 2075 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2075 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
| 2076 } | 2076 } |
| OLD | NEW |