Unreviewed, build fix.
r68008 broke new-run-webkit-tests in that the chromium ports no
longer respect set-webkit-configuration. The correct fix for this
is being pursued in bug 46278 (along with a bunch of unit tests),
but in the meantime I'm reverting the particular lines that broke
things. This was tested by hand.
* Scripts/webkitpy/layout_tests/port/chromium.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68232
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-09-23 Dirk Pranke <dpranke@chromium.org>
+
+ Unreviewed, build fix.
+
+ r68008 broke new-run-webkit-tests in that the chromium ports no
+ longer respect set-webkit-configuration. The correct fix for this
+ is being pursued in bug 46278 (along with a bunch of unit tests),
+ but in the meantime I'm reverting the particular lines that broke
+ things. This was tested by hand.
+
+ * Scripts/webkitpy/layout_tests/port/chromium.py:
+
2010-09-23 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
"""Abstract base class for Chromium implementations of the Port class."""
def __init__(self, **kwargs):
+ import pdb
+ pdb.set_trace()
if 'options' in kwargs:
options = kwargs['options']
- if (options and (not hasattr(options, 'configuration') or
- options.configuration is None)):
+ if (options and not hasattr(options, 'configuration')):
options.configuration = 'Release'
base.Port.__init__(self, **kwargs)
self._chromium_base_dir = None