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

Side by Side Diff: net/BUILD.gn

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

Powered by Google App Engine
This is Rietveld 408576698