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

Side by Side Diff: net/DEPS

Issue 1548503002: net: extract GetDirectoryListingXXX functions into directory_listing.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 4 years, 11 months 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 | « net/BUILD.gn ('k') | net/base/directory_listing.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 include_rules = [ 1 include_rules = [
2 "+crypto", 2 "+crypto",
3 "+gin", 3 "+gin",
4 "+jni", 4 "+jni",
5 "+mojo/common", 5 "+mojo/common",
6 "+mojo/public", 6 "+mojo/public",
7 "+third_party/apple_apsl", 7 "+third_party/apple_apsl",
8 "+third_party/nss", 8 "+third_party/nss",
9 "+third_party/protobuf/src/google/protobuf", 9 "+third_party/protobuf/src/google/protobuf",
10 "+third_party/zlib", 10 "+third_party/zlib",
11 "+sdch/open-vcdiff", 11 "+sdch/open-vcdiff",
12 "+v8", 12 "+v8",
13 13
14 # Most of net should not depend on icu, and brotli to keep size down when 14 # Most of net should not depend on icu, and brotli to keep size down when
15 # built as a library. 15 # built as a library.
16 "-base/i18n", 16 "-base/i18n",
17 "-third_party/brotli", 17 "-third_party/brotli",
18 "-third_party/icu", 18 "-third_party/icu",
19 ] 19 ]
20 20
21 specific_include_rules = { 21 specific_include_rules = {
22 # Within net, only used by file: requests. 22 # Within net, only used by file: requests.
23 "directory_lister(\.cc|_unittest\.cc)": [ 23 "directory_lister(\.cc|_unittest\.cc)": [
24 "+base/i18n", 24 "+base/i18n",
25 ], 25 ],
26 26
27 # Functions largely not used by the rest of net.
28 "directory_listing\.cc": [
29 "+base/i18n",
30 ],
31
27 # Within net, only used by file: requests. 32 # Within net, only used by file: requests.
28 "filename_util_icu\.cc": [ 33 "filename_util_icu\.cc": [
29 "+base/i18n/file_util_icu.h", 34 "+base/i18n/file_util_icu.h",
30 ], 35 ],
31 36
32 # Functions largely not used by the rest of net.
33 "net_util_icu\.cc": [
34 "+base/i18n",
35 "+third_party/icu",
36 ],
37
38 # Consolidated string functions that depend on icu. 37 # Consolidated string functions that depend on icu.
39 "net_string_util_icu\.cc": [ 38 "net_string_util_icu\.cc": [
40 "+base/i18n/i18n_constants.h", 39 "+base/i18n/i18n_constants.h",
41 "+base/i18n/icu_string_conversions.h", 40 "+base/i18n/icu_string_conversions.h",
42 "+third_party/icu/source/common/unicode/ucnv.h" 41 "+third_party/icu/source/common/unicode/ucnv.h"
43 ], 42 ],
44 43
45 "websocket_channel\.h": [ 44 "websocket_channel\.h": [
46 "+base/i18n", 45 "+base/i18n",
47 ], 46 ],
(...skipping 12 matching lines...) Expand all
60 59
61 "brotli_filter\.cc": [ 60 "brotli_filter\.cc": [
62 "+third_party/brotli", 61 "+third_party/brotli",
63 ], 62 ],
64 } 63 }
65 64
66 skip_child_includes = [ 65 skip_child_includes = [
67 "third_party", 66 "third_party",
68 "tools/flip_server", 67 "tools/flip_server",
69 ] 68 ]
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/base/directory_listing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698