Reviewed by Ojan Vafai.
See Chromium issue http://codereview.chromium.org/
5133001/ - we
are modifying the build bots to pass in the builder name with
the "GPU" string appended instead of appending it in the code.
https://bugs.webkit.org/show_bug.cgi?id=49636
* Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72156
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-11-16 Dirk Pranke <dpranke@chromium.org>
+
+ Reviewed by Ojan Vafai.
+
+ See Chromium issue http://codereview.chromium.org/5133001/ - we
+ are modifying the build bots to pass in the builder name with
+ the "GPU" string appended instead of appending it in the code.
+
+ https://bugs.webkit.org/show_bug.cgi?id=49636
+
+ * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
+
2010-11-16 Steve Falkenburg <sfalken@apple.com>
Reviewed by Adam Roben.
options.accelerated_compositing = True
if options.accelerated_2d_canvas is None:
options.accelerated_2d_canvas = True
- if options.builder_name is not None:
- options.builder_name = options.builder_name + ' - GPU'
if options.use_drt is None:
options.use_drt = True
+ # FIXME: Remove this after http://codereview.chromium.org/5133001/ is enabled
+ # on the bots.
+ if options.builder_name is not None and not ' - GPU' in options.builder_name:
+ options.builder_name = options.builder_name + ' - GPU'
+
def _gpu_overrides(port):
try: