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

Unified Diff: masters/master.chromium.perf/master.cfg

Issue 71553003: Make chromium.perf waterfall use official builds on Win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
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 | « masters/master.chromium.chrome/master.cfg ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.perf/master.cfg
===================================================================
--- masters/master.chromium.perf/master.cfg (revision 234817)
+++ masters/master.chromium.perf/master.cfg (working copy)
@@ -230,40 +230,35 @@
# The identifier of the factory is the build configuration. If two factories
# are using the same build configuration, they should have the same identifier.
-FFMPEG_GYP_DEFINES_WIN = (
- 'fastbuild=1 '
- 'ffmpeg_branding=Chrome '
ghost stip (do not use) 2013/11/13 19:57:17 do we not need this, as the chromium.chrome builds
tonyg 2013/11/13 20:15:51 An official build implies these codecs, so they ca
- 'proprietary_codecs=1 '
-)
-
# BuilderTesters using a custom build configuration.
-f_cr_rel_builder = F_WIN(slave_type='Builder',
- options=[
- '--build-tool=ninja', 'chromium_builder_perf'],
- factory_properties={
- 'create_profiles': True,
- 'trigger': 'winrel',
- 'gclient_env': {
- 'GYP_DEFINES': FFMPEG_GYP_DEFINES_WIN,
- 'GYP_GENERATORS': 'ninja'},
- 'build_url': chromium_perf_archive,},
- )
+f_cr_rel_builder = F_WIN(
+ slave_type='Builder',
+ mode='google_chrome',
+ compile_timeout=4800,
+ project='all.sln;chromium_builder_perf',
+ factory_properties={
+ 'create_profiles': True,
+ 'trigger': 'winrel',
+ 'gclient_env': {
+ 'GYP_DEFINES': 'branding=Chrome component=static_library'},
+ 'build_url': chromium_perf_archive,},
+ )
-f_cr_rel_x64_builder = F_WIN(slave_type='Builder',
- options=[
- '--build-tool=ninja', 'chromium_builder_perf'],
- target='Release_x64',
- factory_properties={
- 'create_profiles': True,
- 'trigger': 'winrel_x64',
- 'gclient_env': {
- 'GYP_DEFINES': (FFMPEG_GYP_DEFINES_WIN +
- 'component=shared_library '
tonyg 2013/11/13 16:16:25 I'm not sure why this was a shared_library before.
jschuh 2013/11/13 18:15:50 They should be static for performance tests. We we
tonyg 2013/11/13 20:15:51 Great, thanks for confirming.
- 'target_arch=x64'),
- 'GYP_GENERATORS': 'ninja'},
- 'GYP_MSVS_VERSION': '2012',
tonyg 2013/11/13 16:16:25 I assume this is necessary for 64 bit builds and s
jschuh 2013/11/13 18:15:50 Oddly enough, early versions of VS can't even buil
jschuh 2013/11/13 18:17:28 Sorry, that should have been "earlier". Point bein
tonyg 2013/11/13 20:15:51 OK
- 'build_url': chromium_perf_x64_archive,},
- )
+f_cr_rel_x64_builder = F_WIN(
+ slave_type='Builder',
+ mode='google_chrome',
+ compile_timeout=4800,
+ project='all.sln;chromium_builder_perf',
+ target='Release_x64',
+ factory_properties={
+ 'create_profiles': True,
+ 'trigger': 'winrel_x64',
+ 'gclient_env': {
+ 'GYP_DEFINES':
+ 'branding=Chrome component=static_library target_arch=x64',
jschuh 2013/11/13 18:15:50 Dumb question from me. Is it branding=Chrome or bu
tonyg 2013/11/13 20:15:51 Good question. From common.gypi, it seems like you
tonyg 2013/11/14 02:35:29 James or Scott, do you guys know?
+ 'GYP_MSVS_VERSION': '2012',},
+ 'build_url': chromium_perf_x64_archive,},
+ )
f_cr_rel_perf_xp_1 = F_WIN(slave_type='Tester',
build_url=chromium_rel_archive,
« no previous file with comments | « masters/master.chromium.chrome/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698