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

Unified Diff: scripts/master/factory/dart/dart_factory.py

Issue 50423002: Add windows installer bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years, 2 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 | « masters/master.client.dart/slaves.cfg ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/factory/dart/dart_factory.py
===================================================================
--- scripts/master/factory/dart/dart_factory.py (revision 231314)
+++ scripts/master/factory/dart/dart_factory.py (working copy)
@@ -74,12 +74,20 @@
CUSTOM_DEPS_DIRECTX_SDK = (
"src/third_party/directxsdk",
config.Master.trunk_internal_url + "/third_party/directxsdk@20250")
-
custom_deps_list_win = [CUSTOM_DEPS_WIN7_SDK,
CUSTOM_DEPS_WIN8_SDK,
CUSTOM_DEPS_DIRECTX_SDK]
else:
custom_deps_list_win = []
+
+# Wix custom deps
+if config.Master.trunk_internal_url:
+ custom_wix_deps = [(
+ 'dart/third_party/wix',
+ config.Master.trunk_internal_url + "/third_party/wix/v3_6_3303")]
+else:
+ custom_wix_deps = []
+
custom_deps_list_chromeOnAndroid = [
('dart/third_party/android_tools', android_tools_url),
]
@@ -366,6 +374,9 @@
custom_deps_list=custom_deps_list_chromeOnAndroid),
'android' + postfix: DartFactory(channel, target_os='android'),
'windows' + postfix: DartFactory(channel, target_platform='win32'),
+ 'windows-wix' + postfix:
+ DartFactory(channel, target_platform='win32',
+ custom_deps_list=custom_wix_deps),
}
if channel.name == 'be':
factory_base.update({
« no previous file with comments | « masters/master.client.dart/slaves.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698