Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build.py

Issue 29337984: Issue 382 - Removed support for experimental Chrome builds (Closed)
Patch Set: Created March 8, 2016, 5:37 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | packagerChrome.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.py
===================================================================
--- a/build.py
+++ b/build.py
@@ -165,7 +165,6 @@
multicompartment = False
releaseBuild = False
keyFile = None
- experimentalAPI = False
for option, value in opts:
if option in ('-l', '--locales'):
locales = value.split(',')
@@ -177,8 +176,6 @@
multicompartment = True
elif option in ('-r', '--release'):
releaseBuild = True
- elif option == '--experimental':
- experimentalAPI = True
outFile = args[0] if len(args) > 0 else None
if type == 'gecko':
@@ -189,8 +186,7 @@
elif type == 'chrome':
import buildtools.packagerChrome as packager
packager.createBuild(baseDir, type=type, outFile=outFile, buildNum=buildNum,
- releaseBuild=releaseBuild, keyFile=keyFile,
- experimentalAPI=experimentalAPI)
+ releaseBuild=releaseBuild, keyFile=keyFile)
elif type == 'safari':
import buildtools.packagerSafari as packager
packager.createBuild(baseDir, type=type, outFile=outFile, buildNum=buildNum,
@@ -462,7 +458,6 @@
command.addOption('File containing private key and certificates required to sign the package', short='k', long='key', value='file', types=('gecko', 'chrome', 'safari'))
command.addOption('Create a build for leak testing', short='m', long='multi-compartment', types=('gecko'))
command.addOption('Create a release build', short='r', long='release')
- command.addOption('Enable use of experimental APIs', long='experimental')
command.supportedTypes = ('gecko', 'chrome', 'safari')
with addCommand(runAutoInstall, 'autoinstall') as command:
« no previous file with comments | « no previous file | packagerChrome.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld