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

Side by Side Diff: net/BUILD.gn

Issue 1548503002: net: extract GetDirectoryListingXXX functions into directory_listing.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « no previous file | net/DEPS » ('j') | net/base/directory_listing_unittest.cc » ('J')
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/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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | net/DEPS » ('j') | net/base/directory_listing_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698