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/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 } | 442 } |
443 | 443 |
444 # ICU support. | 444 # ICU support. |
445 deps += [ | 445 deps += [ |
446 "//base:i18n", | 446 "//base:i18n", |
447 "//third_party/icu", | 447 "//third_party/icu", |
448 ] | 448 ] |
449 sources += [ | 449 sources += [ |
450 "base/filename_util_icu.cc", | 450 "base/filename_util_icu.cc", |
451 "base/net_string_util_icu.cc", | 451 "base/net_string_util_icu.cc", |
452 "base/net_util_icu.cc", | |
453 ] | 452 ] |
454 | 453 |
455 # Brotli support. | 454 # Brotli support. |
456 deps += [ "//third_party/brotli" ] | 455 deps += [ "//third_party/brotli" ] |
457 sources += [ "filter/brotli_filter.cc" ] | 456 sources += [ "filter/brotli_filter.cc" ] |
458 } | 457 } |
459 } | 458 } |
460 | 459 |
461 if (is_android) { | 460 if (is_android) { |
462 # Same as net, but with brotli encoding, ICU, file, ftp, and websocket | 461 # Same as net, but with brotli encoding, ICU, file, ftp, and websocket |
(...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1721 if (enable_websockets) { | 1720 if (enable_websockets) { |
1722 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1721 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1723 } | 1722 } |
1724 | 1723 |
1725 if (use_v8_in_net) { | 1724 if (use_v8_in_net) { |
1726 deps += [ ":net_with_v8" ] | 1725 deps += [ ":net_with_v8" ] |
1727 } else { | 1726 } else { |
1728 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1727 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1729 } | 1728 } |
1730 } | 1729 } |
OLD | NEW |