Bug 1080134: Remove unused code r=rail
authorChris AtLee <catlee@mozilla.com>
Thu, 16 Oct 2014 15:09:40 +0200 (2014-10-16)
changeset 11210 ae0f93785b106234896708f7ac1182a26c641017
parent 11208 4765e4d7f461290a54e981af3786fbde86fd1bd7
child 11211 a861b51b4cf80e49f7e8242bf5a9d81d719db2a7
child 11212 8bbdafbad6e469d544f58f52899341288ed12e6a
push id8212
push usercatlee@mozilla.com
push dateThu, 16 Oct 2014 13:10:02 +0000 (2014-10-16)
reviewersrail
bugs1080134
Bug 1080134: Remove unused code r=rail
mozilla/config.py
--- a/mozilla/config.py
+++ b/mozilla/config.py
@@ -2593,19 +2593,16 @@ for name, branch in BRANCHES.items():
 for name, branch in items_at_least(BRANCHES, 'gecko_version', mc_gecko_version):
     if name in ('mozilla-central', 'mozilla-inbound', 'b2g-inbound', 'try'):
         # only enable on twigs for now
         continue
     # if true, any platform with mozharness_desktop_build in its config
     # will use mozharness instead of MozillaBuildFactory
     branch['desktop_mozharness_builds_enabled'] = True
 
-# Bug 950206 - Enable 32-bit Windows builds on Date, test those builds on tst-w64-ec2-XXXX
-BRANCHES['date']['platforms']['win32']['unittest_platform'] = 'win64-opt'
-
 if __name__ == "__main__":
     import sys
     import pprint
     args = sys.argv[1:]
 
     if len(args) > 0:
         items = dict([(b, BRANCHES[b]) for b in args])
     else: