diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 14:05:46 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 14:05:46 +0000 |
commit | 847aaab8e8dfd869c620e7fa0772562ca46f52af (patch) | |
tree | 4b3d4cc054aaeafc2ceb4abda5457f09e59abf59 /url/DEPS | |
parent | e83140a012c770fe4ac438ddc42d2095a982d220 (diff) | |
download | chromium_src-847aaab8e8dfd869c620e7fa0772562ca46f52af.zip chromium_src-847aaab8e8dfd869c620e7fa0772562ca46f52af.tar.gz chromium_src-847aaab8e8dfd869c620e7fa0772562ca46f52af.tar.bz2 |
Make it possible to build url/ without ICU on android.
This is needed to reduce binary size of net/ when build as a
library.
BUG=362608
Review URL: https://codereview.chromium.org/257673002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268740 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url/DEPS')
-rw-r--r-- | url/DEPS | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/url/DEPS b/url/DEPS new file mode 100644 index 0000000..9643291 --- /dev/null +++ b/url/DEPS @@ -0,0 +1,13 @@ +include_rules = [ + "+jni", + + # Limit files that can depend on icu. + "-base/i18n", + "-third_party/icu", +] + +specific_include_rules = { + "url_canon_icu(\.cc|_unittest\.cc)": [ + "+third_party/icu", + ], +} |