| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 } | 386 } |
| 387 } else { | 387 } else { |
| 388 # Use ICU. | 388 # Use ICU. |
| 389 deps += [ | 389 deps += [ |
| 390 "//base:i18n", | 390 "//base:i18n", |
| 391 "//third_party/icu", | 391 "//third_party/icu", |
| 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 "http/http_util_icu.cc", |
| 396 ] | 397 ] |
| 397 } | 398 } |
| 398 | 399 |
| 399 # Brotli support. | 400 # Brotli support. |
| 400 if (!disable_brotli_filter) { | 401 if (!disable_brotli_filter) { |
| 401 sources += [ "filter/brotli_source_stream.cc" ] | 402 sources += [ "filter/brotli_source_stream.cc" ] |
| 402 deps += [ "//third_party/brotli:dec" ] | 403 deps += [ "//third_party/brotli:dec" ] |
| 403 } else { | 404 } else { |
| 404 sources += [ "filter/brotli_source_stream_disabled.cc" ] | 405 sources += [ "filter/brotli_source_stream_disabled.cc" ] |
| 405 } | 406 } |
| (...skipping 1685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2091 if (host_toolchain == current_toolchain) { | 2092 if (host_toolchain == current_toolchain) { |
| 2092 executable("domain_security_preload_generator") { | 2093 executable("domain_security_preload_generator") { |
| 2093 sources = gypi_values.net_domain_security_state_generator_sources | 2094 sources = gypi_values.net_domain_security_state_generator_sources |
| 2094 deps = [ | 2095 deps = [ |
| 2095 "//base", | 2096 "//base", |
| 2096 "//crypto", | 2097 "//crypto", |
| 2097 "//third_party/boringssl", | 2098 "//third_party/boringssl", |
| 2098 ] | 2099 ] |
| 2099 } | 2100 } |
| 2100 } | 2101 } |
| OLD | NEW |