summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-17 00:07:35 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-17 00:07:35 +0000
commit9689d8dafd2d9e10183ffa332f06579efe90655b (patch)
treee94084c08f46948c14d2ac08bec699ff735ffe2e
parent7941d41c1fcf138da497b58ee83d7c260fbce88b (diff)
downloadchromium_src-9689d8dafd2d9e10183ffa332f06579efe90655b.zip
chromium_src-9689d8dafd2d9e10183ffa332f06579efe90655b.tar.gz
chromium_src-9689d8dafd2d9e10183ffa332f06579efe90655b.tar.bz2
These files now compile on Linux so they don't need to be disabled.
Review URL: http://codereview.chromium.org/7450 Patch from icefox. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3498 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/build/V8Bindings/SConscript34
1 files changed, 0 insertions, 34 deletions
diff --git a/webkit/build/V8Bindings/SConscript b/webkit/build/V8Bindings/SConscript
index c1d3102..baf0f40 100644
--- a/webkit/build/V8Bindings/SConscript
+++ b/webkit/build/V8Bindings/SConscript
@@ -333,38 +333,4 @@ inputs = [
if env['PLATFORM'] == 'win32':
inputs.append('precompiled_v8bindings.cpp')
-
-# TODO(erg): These are temporarily disabled during the merge of code back to
-# WebKit. As soon as we're back on TOT, these go back into the working files
-# section.
-if env['PLATFORM'] in ('darwin', 'posix'):
- remove_files = [
- '$DERIVED_DIR/SVGElementFactory.cpp',
- '$DERIVED_DIR/V8SVGCursorElement.cpp',
- '$DERIVED_DIR/V8SVGMaskElement.cpp',
- ]
- for remove in remove_files:
- inputs.remove(remove)
-
-# TODO(erg): Get Frame.h ported and half of this should compile. Get whatever
-# String.h is referenced below and the other half should compile
-if env['PLATFORM'] in ('darwin', 'posix'):
- remove_files = [
- '$DERIVED_DIR/V8Clipboard.cpp',
- '$DERIVED_DIR/V8DOMWindow.cpp',
- '$DERIVED_DIR/V8HTMLInputElement.cpp',
- '$DERIVED_DIR/V8HTMLIsIndexElement.cpp',
- '$DERIVED_DIR/V8HTMLSelectionInputElement.cpp',
- '$DERIVED_DIR/V8InspectorController.cpp',
- '$DERIVED_DIR/V8Location.cpp',
- '$DERIVED_DIR/V8MimeType.cpp',
- '$DERIVED_DIR/V8MimeTypeArray.cpp',
- '$DERIVED_DIR/V8MouseEvent.cpp',
- '$DERIVED_DIR/V8Navigator.cpp',
- '$DERIVED_DIR/V8Plugin.cpp',
- '$DERIVED_DIR/V8PluginArray.cpp',
- ]
- for remove in remove_files:
- inputs.remove(remove)
-
env.ChromeStaticLibrary('V8Bindings', inputs)