diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 18:20:30 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 18:20:30 +0000 |
commit | fb895c694e2117c29b6afb699095f6e187a44da7 (patch) | |
tree | 04a0d1434a470f55f0e639a3e6f15c18416d80e2 /base/base.gyp | |
parent | 8ecb6aa0a92d5426c2c98c23e0e3f3c4f06972c5 (diff) | |
download | chromium_src-fb895c694e2117c29b6afb699095f6e187a44da7.zip chromium_src-fb895c694e2117c29b6afb699095f6e187a44da7.tar.gz chromium_src-fb895c694e2117c29b6afb699095f6e187a44da7.tar.bz2 |
Move more ICU-dependent stuff from base into base/i18n. Some test stuff also
depended on this, so to make the DEPS work out, I made a new base/test
directory where I moved the testing-related files into a new directory
base/test.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/266038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gyp')
-rw-r--r-- | base/base.gyp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/base/base.gyp b/base/base.gyp index 570e9f0..09dca2b 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -144,12 +144,16 @@ 'i18n/file_util_icu.h', 'i18n/icu_string_conversions.cc', 'i18n/icu_string_conversions.h', + 'i18n/icu_util.cc', + 'i18n/icu_util.h', 'i18n/number_formatting.cc', 'i18n/number_formatting.h', + 'i18n/time_formatting.cc', + 'i18n/time_formatting.h', + 'i18n/word_iterator.cc', + 'i18n/word_iterator.h', 'iat_patch.cc', 'iat_patch.h', - 'icu_util.cc', - 'icu_util.h', 'id_map.h', 'image_util.cc', 'image_util.h', @@ -314,8 +318,6 @@ 'thread_local_win.cc', 'time.cc', 'time.h', - 'time_format.cc', - 'time_format.h', 'time_mac.cc', 'time_posix.cc', 'time_win.cc', @@ -349,8 +351,6 @@ 'windows_message_list.h', 'wmi_util.cc', 'wmi_util.h', - 'word_iterator.cc', - 'word_iterator.h', 'worker_pool.h', 'worker_pool_linux.cc', 'worker_pool_linux.h', @@ -560,8 +560,8 @@ 'sources': [ # Infrastructure files. 'multiprocess_test.h', - 'run_all_unittests.cc', - 'test_suite.h', + 'test/run_all_unittests.cc', + 'test/test_suite.h', # Tests. 'at_exit_unittest.cc', @@ -585,6 +585,7 @@ 'hmac_unittest.cc', 'id_map_unittest.cc', 'i18n/file_util_icu_unittest.cc', + 'i18n/word_iterator_unittest.cc', 'json_reader_unittest.cc', 'json_writer_unittest.cc', 'lazy_instance_unittest.cc', @@ -639,7 +640,6 @@ 'weak_ptr_unittest.cc', 'win_util_unittest.cc', 'wmi_util_unittest.cc', - 'word_iterator_unittest.cc', 'worker_pool_unittest.cc', ], 'include_dirs': [ @@ -707,11 +707,11 @@ 'base', ], 'sources': [ - 'test_file_util.h', - 'test_file_util_linux.cc', - 'test_file_util_mac.cc', - 'test_file_util_posix.cc', - 'test_file_util_win.cc', + 'test/test_file_util.h', + 'test/test_file_util_linux.cc', + 'test/test_file_util_mac.cc', + 'test/test_file_util_posix.cc', + 'test/test_file_util_win.cc', ], 'conditions': [ [ 'OS == "linux" or OS == "freebsd"', { @@ -745,7 +745,7 @@ ], 'sources': [ 'perftimer.cc', - 'run_all_perftests.cc', + 'test/run_all_perftests.cc', ], 'direct_dependent_settings': { 'defines': [ @@ -756,8 +756,8 @@ ['OS == "linux" or OS == "freebsd"', { 'dependencies': [ # Needed to handle the #include chain: - # base/perf_test_suite.h - # base/test_suite.h + # base/test/perf_test_suite.h + # base/test/test_suite.h # gtk/gtk.h '../build/linux/system.gyp:gtk', ], |