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

Side by Side Diff: net/BUILD.gn

Issue 2537133002: Update brotli to v1.0.0-snapshot. (Closed)
Patch Set: Fixed typo 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
« no previous file with comments | « ios/chrome/browser/ui/webui/about_ui.cc ('k') | net/filter/brotli_source_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 ] 392 ]
393 sources += [ 393 sources += [
394 "base/filename_util_icu.cc", 394 "base/filename_util_icu.cc",
395 "base/net_string_util_icu.cc", 395 "base/net_string_util_icu.cc",
396 ] 396 ]
397 } 397 }
398 398
399 # Brotli support. 399 # Brotli support.
400 if (!disable_brotli_filter) { 400 if (!disable_brotli_filter) {
401 sources += [ "filter/brotli_source_stream.cc" ] 401 sources += [ "filter/brotli_source_stream.cc" ]
402 deps += [ "//third_party/brotli" ] 402 deps += [ "//third_party/brotli:dec" ]
403 } else { 403 } else {
404 sources += [ "filter/brotli_source_stream_disabled.cc" ] 404 sources += [ "filter/brotli_source_stream_disabled.cc" ]
405 } 405 }
406 } 406 }
407 } 407 }
408 408
409 grit("net_resources") { 409 grit("net_resources") {
410 source = "base/net_resources.grd" 410 source = "base/net_resources.grd"
411 use_qualified_include = true 411 use_qualified_include = true
412 outputs = [ 412 outputs = [
(...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after
2077 if (host_toolchain == current_toolchain) { 2077 if (host_toolchain == current_toolchain) {
2078 executable("domain_security_preload_generator") { 2078 executable("domain_security_preload_generator") {
2079 sources = gypi_values.net_domain_security_state_generator_sources 2079 sources = gypi_values.net_domain_security_state_generator_sources
2080 deps = [ 2080 deps = [
2081 "//base", 2081 "//base",
2082 "//crypto", 2082 "//crypto",
2083 "//third_party/boringssl", 2083 "//third_party/boringssl",
2084 ] 2084 ]
2085 } 2085 }
2086 } 2086 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/webui/about_ui.cc ('k') | net/filter/brotli_source_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698