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

Side by Side Diff: net/DEPS

Issue 266053002: Implement alternative string conversion functions in net/ on Android, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 include_rules = [ 1 include_rules = [
2 "+crypto", 2 "+crypto",
3 "+gin/public", 3 "+gin/public",
4 "+jni", 4 "+jni",
5 "+third_party/apple_apsl", 5 "+third_party/apple_apsl",
6 "+third_party/libevent", 6 "+third_party/libevent",
7 "+third_party/nss", 7 "+third_party/nss",
8 "+third_party/zlib", 8 "+third_party/zlib",
9 "+sdch/open-vcdiff", 9 "+sdch/open-vcdiff",
10 "+v8", 10 "+v8",
(...skipping 26 matching lines...) Expand all
37 "+base/i18n", 37 "+base/i18n",
38 ], 38 ],
39 39
40 # Consolidated string functions that depend on icu. 40 # Consolidated string functions that depend on icu.
41 "net_string_util_icu\.cc": [ 41 "net_string_util_icu\.cc": [
42 "+base/i18n/i18n_constants.h", 42 "+base/i18n/i18n_constants.h",
43 "+base/i18n/icu_string_conversions.h", 43 "+base/i18n/icu_string_conversions.h",
44 "+third_party/icu/source/common/unicode/ucnv.h" 44 "+third_party/icu/source/common/unicode/ucnv.h"
45 ], 45 ],
46 46
47 # Only use icu for string conversions. 47 # Only use icu for string conversions.
mef 2014/05/06 15:40:58 is this comment still relevant?
mmenke 2014/05/06 18:57:21 Not really, removed.
48 "proxy_script_fetcher_impl\.cc": [
49 "+base/i18n/icu_string_conversions.h",
50 ],
51 "websocket_channel\.h": [ 48 "websocket_channel\.h": [
52 "+base/i18n", 49 "+base/i18n",
53 ], 50 ],
54 51
55 "ftp_util\.cc": [ 52 "ftp_util\.cc": [
56 "+base/i18n", 53 "+base/i18n",
57 "+third_party/icu", 54 "+third_party/icu",
58 ], 55 ],
59 "ftp_directory_listing_parser\.cc": [ 56 "ftp_directory_listing_parser\.cc": [
60 "+base/i18n", 57 "+base/i18n",
61 ], 58 ],
62 } 59 }
63 60
64 skip_child_includes = [ 61 skip_child_includes = [
65 "third_party", 62 "third_party",
66 "tools/flip_server", 63 "tools/flip_server",
67 ] 64 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698