summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authornsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-23 19:16:06 +0000
committernsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-23 19:16:06 +0000
commit7535a22733570b5fdf05f19cd4f4f58571af335a (patch)
tree41ba8e9a71f409cae294eef0d71119314b3b6274 /webkit
parent14da80609e399f37e868711b8ce910211badb28a (diff)
downloadchromium_src-7535a22733570b5fdf05f19cd4f4f58571af335a.zip
chromium_src-7535a22733570b5fdf05f19cd4f4f58571af335a.tar.gz
chromium_src-7535a22733570b5fdf05f19cd4f4f58571af335a.tar.bz2
The deps_checker is complaining that v8_binding includes
a file in common. I changed the path so we can include it the same way we do everywhere else. Eventually we should include with a full path (starting at third_party/icu...) git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/build/V8Bindings/SConscript2
-rw-r--r--webkit/port/bindings/v8/v8_binding.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/build/V8Bindings/SConscript b/webkit/build/V8Bindings/SConscript
index dae91bf..d91497a 100644
--- a/webkit/build/V8Bindings/SConscript
+++ b/webkit/build/V8Bindings/SConscript
@@ -52,7 +52,7 @@ else:
# We need to include the parts of icu that we want here:
env.Append(
CPPPATH = [
- '$ICU38_DIR/public/',
+ '$ICU38_DIR/public/common',
])
if env['PLATFORM'] == 'posix':
diff --git a/webkit/port/bindings/v8/v8_binding.h b/webkit/port/bindings/v8/v8_binding.h
index 92f1186..edb6428 100644
--- a/webkit/port/bindings/v8/v8_binding.h
+++ b/webkit/port/bindings/v8/v8_binding.h
@@ -45,7 +45,7 @@
#if defined(OS_LINUX)
// Use the platform.h for linux.
-#include "common/unicode/plinux.h"
+#include "unicode/plinux.h"
#elif defined(OS_WIN) || defined(OS_MACOSX)
// WebKit ships a hacked up version of one of the ICU header files, with all
// options set for OSX.