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

Unified Diff: dart/editor/build/build.py

Issue 59623003: editor/build/build.py: Use 32-bit version of dartium/content_shell on macos/windows + bat script fi… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | dart/tools/dartium/download_shellscript_template.bat » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/editor/build/build.py
diff --git a/dart/editor/build/build.py b/dart/editor/build/build.py
index 4a032b05e2026312de575f3660fbbaa5703b94b4..32b4ad73910048675d649a9e5489a10812548a4b 100755
--- a/dart/editor/build/build.py
+++ b/dart/editor/build/build.py
@@ -999,6 +999,11 @@ def PostProcessEditorBuilds(out_dir, buildos):
'mac' : '.sh',
}[SYSTEM]
+ # We don't have 64-bit versions of dartium/content_shell for
+ # macos/windows.
+ if ['mac', 'win'].contains(SYSTEM):
+ arch = '32'
+
namer = bot_utils.GCSNamer(CHANNEL, bot_utils.ReleaseType.RELEASE)
# We're adding download scripts to the chromium directory.
« no previous file with comments | « no previous file | dart/tools/dartium/download_shellscript_template.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698