Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: master/skia_master_scripts/factory.py

Issue 23020034: Don't build debugger on 32-bit Linux (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/tests/factory_configuration/expected/Build-Ubuntu12-GCC-x86-Debug » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: master/skia_master_scripts/factory.py
===================================================================
--- master/skia_master_scripts/factory.py (revision 10911)
+++ master/skia_master_scripts/factory.py (working copy)
@@ -689,8 +689,10 @@
if not self._build_targets:
self._build_targets = ['skia_lib', 'tests', 'gm', 'tools', 'bench']
if (('Win7' in self._builder_name and 'x86_64' in self._builder_name) or
+ ('Ubuntu' in self._builder_name and 'x86-' in self._builder_name) or
'Mac10.6' in self._builder_name):
- # Don't compile the debugger in 64-bit Win7 or Mac 10.6.
+ # Don't compile the debugger in 64-bit Win7, Mac 10.6, or 32-bit Linux
+ # since the Qt SDK doesn't include libraries for those platforms.
self._build_targets.append('most')
else:
self._build_targets.append('everything')
« no previous file with comments | « no previous file | tools/tests/factory_configuration/expected/Build-Ubuntu12-GCC-x86-Debug » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698