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

Unified Diff: tools/dartium/archive.py

Issue 2318153002: Remove --win-ninja option from dartium buildbot scripts (Closed)
Patch Set: Created 4 years, 3 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/dartium/buildbot_annotated_steps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/archive.py
diff --git a/tools/dartium/archive.py b/tools/dartium/archive.py
index 973731de632e24d705fa76dd09d6be8f1bba82d8..b499f027d9999cb1abd325b6baf2c8b9e72c804b 100755
--- a/tools/dartium/archive.py
+++ b/tools/dartium/archive.py
@@ -132,7 +132,7 @@ def StageAndZip(fileList, target):
def Archive(srcpath, mode, dartium_target, contentshell_target,
- chromedriver_target, is_win_ninja=False):
+ chromedriver_target):
# We currently build using ninja on mac debug.
if HOST_OS == 'mac':
releaseDir = os.path.join(srcpath, 'out', mode)
@@ -142,10 +142,7 @@ def Archive(srcpath, mode, dartium_target, contentshell_target,
releaseDir = os.path.join(srcpath, 'out', mode)
extra_files = []
elif HOST_OS == 'win':
- if is_win_ninja:
- releaseDir = os.path.join(srcpath, 'out', mode)
- else:
- releaseDir = os.path.join(srcpath, 'out', mode)
+ releaseDir = os.path.join(srcpath, 'out', mode)
# issue(16760) - we _need_ to fix our parsing of the FILES.cfg
extra_files = [file for file in os.listdir(releaseDir) if file.endswith('manifest')]
else:
« no previous file with comments | « no previous file | tools/dartium/buildbot_annotated_steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698