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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
428 } | 428 } |
429 | 429 |
430 # ICU support. | 430 # ICU support. |
431 deps += [ | 431 deps += [ |
432 "//base:i18n", | 432 "//base:i18n", |
433 "//third_party/icu", | 433 "//third_party/icu", |
434 ] | 434 ] |
435 sources += [ | 435 sources += [ |
436 "base/filename_util_icu.cc", | 436 "base/filename_util_icu.cc", |
437 "base/net_string_util_icu.cc", | 437 "base/net_string_util_icu.cc", |
438 "base/net_util_icu.cc", | |
tfarina
2015/12/21 20:47:47
looks like I will have problem with this. So, will
eroman
2015/12/21 21:17:35
My expectation is that GetDirectoryListingHeader()
tfarina
2015/12/21 22:20:28
I got back with directory_listing.cc. I'm unsure h
| |
439 ] | 438 ] |
440 } | 439 } |
441 } | 440 } |
442 | 441 |
443 if (is_android) { | 442 if (is_android) { |
444 # Same as net, but with ICU, file, ftp, and websocket support stripped. | 443 # Same as net, but with ICU, file, ftp, and websocket support stripped. |
445 component("net_small") { | 444 component("net_small") { |
446 sources = net_shared_sources | 445 sources = net_shared_sources |
447 | 446 |
448 # Add back some sources that were otherwise filtered out. | 447 # Add back some sources that were otherwise filtered out. |
(...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1693 if (enable_websockets) { | 1692 if (enable_websockets) { |
1694 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1693 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1695 } | 1694 } |
1696 | 1695 |
1697 if (use_v8_in_net) { | 1696 if (use_v8_in_net) { |
1698 deps += [ ":net_with_v8" ] | 1697 deps += [ ":net_with_v8" ] |
1699 } else { | 1698 } else { |
1700 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1699 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1701 } | 1700 } |
1702 } | 1701 } |
OLD | NEW |