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

Unified Diff: packagerChrome.py

Issue 6116696976785408: Issue 1590 - Add devenv support for Safari (Closed)
Patch Set: Created Nov. 21, 2014, 10:32 a.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 | « build.py ('k') | packagerSafari.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packagerChrome.py
===================================================================
--- a/packagerChrome.py
+++ b/packagerChrome.py
@@ -397,12 +397,3 @@
signature = signBinary(zipdata, keyFile)
pubkey = getPublicKey(keyFile)
writePackage(outFile, pubkey, signature, zipdata)
-
-def createDevEnv(baseDir, type):
- fileBuffer = StringIO()
- createBuild(baseDir, type=type, outFile=fileBuffer, devenv=True, releaseBuild=True)
-
- from zipfile import ZipFile
- zip = ZipFile(StringIO(fileBuffer.getvalue()), 'r')
- zip.extractall(os.path.join(baseDir, 'devenv'))
- zip.close()
« no previous file with comments | « build.py ('k') | packagerSafari.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld