diff options
author | apatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 22:19:59 +0000 |
---|---|---|
committer | apatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 22:19:59 +0000 |
commit | b1ee1c29f6b7aa7c2b15d590862c333960c8654b (patch) | |
tree | 942f9f302d819d2b3842b9e99463e7f2d158aae6 /o3d/utils | |
parent | 0f348aebf569c6acd4cf82b5954096e96458eb50 (diff) | |
download | chromium_src-b1ee1c29f6b7aa7c2b15d590862c333960c8654b.zip chromium_src-b1ee1c29f6b7aa7c2b15d590862c333960c8654b.tar.gz chromium_src-b1ee1c29f6b7aa7c2b15d590862c333960c8654b.tar.bz2 |
Updated O3D to work with most recent Chrome base.
Added build.scons for Chrome IPC.
Review URL: http://codereview.chromium.org/160616
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/utils')
-rw-r--r-- | o3d/utils/cross/file_path_utils.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/o3d/utils/cross/file_path_utils.cc b/o3d/utils/cross/file_path_utils.cc index d62c417..bea30de 100644 --- a/o3d/utils/cross/file_path_utils.cc +++ b/o3d/utils/cross/file_path_utils.cc @@ -173,11 +173,7 @@ bool FindFileHelper(const FilePath& path_to_search, const FilePath& path_to_find, FilePath* found_path) { std::vector<FilePath::StringType> parts; -#ifdef GYP_BUILD path_to_find.GetComponents(&parts); -#else - file_util::PathComponents(path_to_find, &parts); -#endif for (size_t ii = 0; ii < parts.size(); ++ii) { // build a path from parts. |