diff options
author | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 21:39:11 +0000 |
---|---|---|
committer | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 21:39:11 +0000 |
commit | 06533c0b11ce14b45eb0205fdc28a217eeba763c (patch) | |
tree | c2209aab205a7b2216c61be7e1ae6b231b7cb148 /webkit/build | |
parent | 68acddb6ced1c8d29e84fb1465f331515217e50a (diff) | |
download | chromium_src-06533c0b11ce14b45eb0205fdc28a217eeba763c.zip chromium_src-06533c0b11ce14b45eb0205fdc28a217eeba763c.tar.gz chromium_src-06533c0b11ce14b45eb0205fdc28a217eeba763c.tar.bz2 |
Refactor v8 extensions so that they aren't in the WebCore namespace, and can call functions in the rest of Chromium code without having to go through ChromiumBridge (which now lives upstream in the WebKit repository).
R=darin,mbelshe
Review URL: http://codereview.chromium.org/40132
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11040 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build')
-rw-r--r-- | webkit/build/V8Bindings/SConscript | 9 | ||||
-rw-r--r-- | webkit/build/V8Bindings/V8Bindings.vcproj | 16 |
2 files changed, 13 insertions, 12 deletions
diff --git a/webkit/build/V8Bindings/SConscript b/webkit/build/V8Bindings/SConscript index 64fa2b5..7739356 100644 --- a/webkit/build/V8Bindings/SConscript +++ b/webkit/build/V8Bindings/SConscript @@ -350,10 +350,6 @@ inputs = [ '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp', '$PORT_DIR/bindings/v8/WorkerContextExecutionProxy.cpp', '$PORT_DIR/bindings/v8/WorkerScriptController.cpp', - '$PORT_DIR/bindings/v8/extensions/GCController.cpp', - '$PORT_DIR/bindings/v8/extensions/Gears.cpp', - '$PORT_DIR/bindings/v8/extensions/Interval.cpp', - '$PORT_DIR/bindings/v8/extensions/Playback.cpp', '$WEBCORE_DIR/bindings/v8/custom/V8CanvasRenderingContext2DCustom.cpp', '$WEBCORE_DIR/bindings/v8/custom/V8ClipboardCustom.cpp', @@ -390,6 +386,11 @@ inputs = [ '$WEBCORE_DIR/bindings/v8/custom/V8XMLSerializerConstructor.cpp', '$WEBCORE_DIR/bindings/v8/custom/V8XPathEvaluatorConstructor.cpp', '$WEBCORE_DIR/bindings/v8/custom/V8XSLTProcessorCustom.cpp', + + '$WEBKIT_DIR/extensions/v8/gc_extension.cc', + '$WEBKIT_DIR/extensions/v8/gears_extension.cc', + '$WEBKIT_DIR/extensions/v8/interval_extension.cc', + '$WEBKIT_DIR/extensions/v8/playback_extension.cc', ] if env.Bit('windows'): diff --git a/webkit/build/V8Bindings/V8Bindings.vcproj b/webkit/build/V8Bindings/V8Bindings.vcproj index c104f9e..87d4964 100644 --- a/webkit/build/V8Bindings/V8Bindings.vcproj +++ b/webkit/build/V8Bindings/V8Bindings.vcproj @@ -2668,35 +2668,35 @@ Name="extensions" > <File - RelativePath="..\..\port\bindings\v8\extensions\GCController.cpp" + RelativePath="..\..\extensions\v8\gc_extension.cc" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\GCController.h" + RelativePath="..\..\extensions\v8\gc_extension.h" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\Gears.cpp" + RelativePath="..\..\extensions\v8\gears_extension.cc" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\Gears.h" + RelativePath="..\..\extensions\v8\gears_extension.h" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\Interval.cpp" + RelativePath="..\..\extensions\v8\interval_extension.cc" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\Interval.h" + RelativePath="..\..\extensions\v8\interval_extension.h" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\Playback.cpp" + RelativePath="..\..\extensions\v8\playback_extension.cc" > </File> <File - RelativePath="..\..\port\bindings\v8\extensions\Playback.h" + RelativePath="..\..\extensions\v8\playback_extension.h" > </File> </Filter> |