diff options
author | ager@google.com <ager@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-14 14:23:54 +0000 |
---|---|---|
committer | ager@google.com <ager@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-14 14:23:54 +0000 |
commit | 2efd98c3394b2e8f244936d8e3e21fdf8af5c944 (patch) | |
tree | b8e6f9c0dc34408f213c5e85c1e7b797f0dc3880 /webkit/build/V8Bindings | |
parent | f6c135caf66962d03f769d1255c62496f0c147c0 (diff) | |
download | chromium_src-2efd98c3394b2e8f244936d8e3e21fdf8af5c944.zip chromium_src-2efd98c3394b2e8f244936d8e3e21fdf8af5c944.tar.gz chromium_src-2efd98c3394b2e8f244936d8e3e21fdf8af5c944.tar.bz2 |
Fix a number of layout tests.
- Add v8 binding for animation and transition types.
- Update SVGPODTypeWrappers to follow the latest webkit changes.
- Remove a rebaselining that is no longer needed.
Review URL: http://codereview.chromium.org/7298
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/V8Bindings')
-rw-r--r-- | webkit/build/V8Bindings/SConscript | 10 | ||||
-rw-r--r-- | webkit/build/V8Bindings/V8Bindings.vcproj | 32 |
2 files changed, 38 insertions, 4 deletions
diff --git a/webkit/build/V8Bindings/SConscript b/webkit/build/V8Bindings/SConscript index 710763e..3af24fd 100644 --- a/webkit/build/V8Bindings/SConscript +++ b/webkit/build/V8Bindings/SConscript @@ -293,11 +293,15 @@ inputs = [ '$DERIVED_DIR/V8TreeWalker.cpp', '$DERIVED_DIR/V8UIEvent.cpp', '$DERIVED_DIR/V8UndetectableHTMLCollection.cpp', - '$DERIVED_DIR/V8WebkitCSSKeyframeRule.cpp', - '$DERIVED_DIR/V8WebkitCSSKeyframesRule.cpp', + '$DERIVED_DIR/V8WebKitAnimationEvent.cpp', + '$DERIVED_DIR/V8WebKitCSSKeyframeRule.cpp', + '$DERIVED_DIR/V8WebKitCSSKeyframesRule.cpp', + '$DERIVED_DIR/V8WebKitCSSTransformValue.cpp', + '$DERIVED_DIR/V8WebKitTransitionEvent.cpp', '$DERIVED_DIR/V8WheelEvent.cpp', '$DERIVED_DIR/V8XMLHttpRequest.cpp', '$DERIVED_DIR/V8XMLHttpRequestException.cpp', + '$DERIVED_DIR/V8XMLHttpRequestProgressEvent.cpp', '$DERIVED_DIR/V8XMLHttpRequestUpload.cpp', '$DERIVED_DIR/V8XMLSerializer.cpp', '$DERIVED_DIR/V8XPathEvaluator.cpp', @@ -336,8 +340,6 @@ if env['PLATFORM'] in ('darwin', 'posix'): '$DERIVED_DIR/SVGElementFactory.cpp', '$DERIVED_DIR/V8SVGCursorElement.cpp', '$DERIVED_DIR/V8SVGMaskElement.cpp', - '$DERIVED_DIR/V8WebkitCSSKeyframeRule.cpp', - '$DERIVED_DIR/V8WebkitCSSKeyframesRule.cpp', ] for remove in remove_files: inputs.remove(remove) diff --git a/webkit/build/V8Bindings/V8Bindings.vcproj b/webkit/build/V8Bindings/V8Bindings.vcproj index 209ba50..03836c4 100644 --- a/webkit/build/V8Bindings/V8Bindings.vcproj +++ b/webkit/build/V8Bindings/V8Bindings.vcproj @@ -2144,6 +2144,14 @@ > </File> <File + RelativePath="$(IntDir)\DerivedSources\V8WebKitAnimationEvent.cpp" + > + </File> + <File + RelativePath="$(IntDir)\DerivedSources\V8WebKitAnimationEvent.h" + > + </File> + <File RelativePath="$(IntDir)\DerivedSources\V8WebKitCSSKeyframeRule.cpp" > </File> @@ -2160,6 +2168,22 @@ > </File> <File + RelativePath="$(IntDir)\DerivedSources\V8WebKitCSSTransformValue.cpp" + > + </File> + <File + RelativePath="$(IntDir)\DerivedSources\V8WebKitCSSTransformValue.h" + > + </File> + <File + RelativePath="$(IntDir)\DerivedSources\V8WebKitTransitionEvent.cpp" + > + </File> + <File + RelativePath="$(IntDir)\DerivedSources\V8WebKitTransitionEvent.h" + > + </File> + <File RelativePath="$(IntDir)\DerivedSources\V8WheelEvent.cpp" > </File> @@ -2192,6 +2216,14 @@ > </File> <File + RelativePath="$(IntDir)\DerivedSources\V8XMLHttpRequestProgressEvent.cpp" + > + </File> + <File + RelativePath="$(IntDir)\DerivedSources\V8XMLHttpRequestProgressEvent.h" + > + </File> + <File RelativePath="$(IntDir)\DerivedSources\V8XMLHttpRequestUpload.cpp" > </File> |