From 7535a22733570b5fdf05f19cd4f4f58571af335a Mon Sep 17 00:00:00 2001 From: "nsylvain@google.com" <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98> Date: Sat, 23 Aug 2008 19:16:06 +0000 Subject: 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 --- webkit/build/V8Bindings/SConscript | 2 +- webkit/port/bindings/v8/v8_binding.h | 2 +- 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. -- cgit v1.1