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

Side by Side Diff: net/BUILD.gn

Issue 2537133002: Update brotli to v1.0.0-snapshot. (Closed)
Patch Set: Created 4 years 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
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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 ] 380 ]
381 sources += [ 381 sources += [
382 "base/filename_util_icu.cc", 382 "base/filename_util_icu.cc",
383 "base/net_string_util_icu.cc", 383 "base/net_string_util_icu.cc",
384 ] 384 ]
385 } 385 }
386 386
387 # Brotli support. 387 # Brotli support.
388 if (!disable_brotli_filter) { 388 if (!disable_brotli_filter) {
389 sources += [ "filter/brotli_source_stream.cc" ] 389 sources += [ "filter/brotli_source_stream.cc" ]
390 deps += [ "//third_party/brotli" ] 390 deps += [ "//third_party/brotli:dec" ]
391 } else { 391 } else {
392 sources += [ "filter/brotli_source_stream_disabled.cc" ] 392 sources += [ "filter/brotli_source_stream_disabled.cc" ]
393 } 393 }
394 } 394 }
395 } 395 }
396 396
397 grit("net_resources") { 397 grit("net_resources") {
398 source = "base/net_resources.grd" 398 source = "base/net_resources.grd"
399 use_qualified_include = true 399 use_qualified_include = true
400 outputs = [ 400 outputs = [
(...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after
2050 "http/http_security_headers_hpkp_report_only_fuzzer.cc", 2050 "http/http_security_headers_hpkp_report_only_fuzzer.cc",
2051 ] 2051 ]
2052 deps = [ 2052 deps = [
2053 ":net_fuzzer_test_support", 2053 ":net_fuzzer_test_support",
2054 "//base", 2054 "//base",
2055 "//net", 2055 "//net",
2056 "//url", 2056 "//url",
2057 ] 2057 ]
2058 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" 2058 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
2059 } 2059 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698