Replace third_party/icu/public with third_party/icu/source in the include directives.

This is to move back icu headers in
third_party/icu/public/{i18n,common}/unicode back to their upstream
locations in third_party/icu/source/{i18n,common}/unicode.

http://codereview.chromium.org/18836004 has is a CL to move
ICU header files. 

Roll ICU to the version with the above ICU CL (http://crrev.com/211851 ). 


In addition to the global replacement of third_party/icu/public with third_party/icu/source, the top-level DEPS, DEPS in printing and chrome/ are tightened up. (the latter two were too permissive (it used to allow any header from  third_party/icu).
 
Besides, sync '-foo' list in ios/public/DEPS with '+foo' in the top-level DEPS and build/linux/unbundled/icu.gyp is updated. 

BUG=251433
TEST=Compile succeeds on all bots. checkdeps.py does not find any error.
TBR=brettw,sky,wtc

Review URL: https://chromiumcodereview.appspot.com/18252003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@212324 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
jshin@chromium.org 2013-07-18 11:14:04 +00:00
Родитель 6e2fdd075d
Коммит 4079645a6c
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -36,9 +36,9 @@
'headers_root_path': 'public/i18n',
'header_filenames': [
# This list can easily be updated using the command below:
# find third_party/icu/public/i18n -iname '*.h' \
# find third_party/icu/source/i18n/unicode -iname '*.h' \
# -printf "'%p',\n" | \
# sed -e 's|third_party/icu/public/i18n/||' | sort -u
# sed -e 's|third_party/icu/source/i18n/||' | sort -u
'unicode/basictz.h',
'unicode/bmsearch.h',
'unicode/bms.h',
@ -122,9 +122,9 @@
'headers_root_path': 'public/common',
'header_filenames': [
# This list can easily be updated using the command below:
# find third_party/icu/public/common -iname '*.h' \
# find third_party/icu/source/common/unicode -iname '*.h' \
# -printf "'%p',\n" | \
# sed -e 's|third_party/icu/public/common/||' | sort -u
# sed -e 's|third_party/icu/source/common/||' | sort -u
'unicode/brkiter.h',
'unicode/bytestream.h',
'unicode/caniter.h',