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

Side by Side Diff: masters/master.chromium.memory.fyi/master.cfg

Issue 1823453002: Revert of Temporarily switch the compiler back to VS2013 on DrMemory bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from buildbot.scheduler import Triggerable 5 from buildbot.scheduler import Triggerable
6 from buildbot.scheduler import Scheduler 6 from buildbot.scheduler import Scheduler
7 7
8 from common import chromium_utils 8 from common import chromium_utils
9 9
10 # These modules come from scripts/master, which must be in the PYTHONPATH. 10 # These modules come from scripts/master, which must be in the PYTHONPATH.
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 f_chromium_rel_win_drmemory_builder = F_WIN_NINJA( 321 f_chromium_rel_win_drmemory_builder = F_WIN_NINJA(
322 # TODO(timurrrr): reuse the builder for TSan/Win too once 322 # TODO(timurrrr): reuse the builder for TSan/Win too once
323 # http://crbug.com/108155 is resolved. 323 # http://crbug.com/108155 is resolved.
324 slave_type='Builder', 324 slave_type='Builder',
325 target='Release', 325 target='Release',
326 # TODO(bruening): remove "_dbg" from this name in all.gyp as it is 326 # TODO(bruening): remove "_dbg" from this name in all.gyp as it is
327 # not limited to just Debug. 327 # not limited to just Debug.
328 # TODO(timurrrr): Might wanna remove chromium_builder_dbg_drmemory_win 328 # TODO(timurrrr): Might wanna remove chromium_builder_dbg_drmemory_win
329 # entirely as ninja supports target lists similar to what we always had 329 # entirely as ninja supports target lists similar to what we always had
330 # on Linux. 330 # on Linux.
331 # TODO(zhaoqin|bruening): Temporarily using VS2013 due to bugs in DrMemory.
332 # crbug.com/594808.
333 options=['--build-tool=ninja', '--', 'chromium_builder_dbg_drmemory_win'], 331 options=['--build-tool=ninja', '--', 'chromium_builder_dbg_drmemory_win'],
334 factory_properties={ 332 factory_properties={
335 'gclient_env': {'GYP_DEFINES': ('build_for_tool=drmemory ' 333 'gclient_env': {'GYP_DEFINES': ('build_for_tool=drmemory '
336 'component=shared_library '), 334 'component=shared_library '),
337 'GYP_MSVS_VERSION': '2013',
338 'GYP_GENERATORS': 'ninja'}, 335 'GYP_GENERATORS': 'ninja'},
339 'package_pdb_files': True, 336 'package_pdb_files': True,
340 'trigger': 'chromium_win_drmemory', 337 'trigger': 'chromium_win_drmemory',
341 'build_url': chromium_win_drmemory_archive, 338 'build_url': chromium_win_drmemory_archive,
342 } 339 }
343 ) 340 )
344 341
345 f_chromium_rel_win_drmemory = F_WIN_NINJA( 342 f_chromium_rel_win_drmemory = F_WIN_NINJA(
346 slave_type='Tester', 343 slave_type='Tester',
347 target='Release', 344 target='Release',
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 ], 518 ],
522 factory_properties={'halt_on_missing_build': True}, 519 factory_properties={'halt_on_missing_build': True},
523 ) 520 )
524 521
525 # DrMemory x64 Builder 522 # DrMemory x64 Builder
526 f_chromium_rel_win_drmemory_64_builder = F_WIN_NINJA( 523 f_chromium_rel_win_drmemory_64_builder = F_WIN_NINJA(
527 slave_type='Builder', 524 slave_type='Builder',
528 target='Release_x64', 525 target='Release_x64',
529 # TODO(bruening): remove "_dbg" from this name in all.gyp as it is 526 # TODO(bruening): remove "_dbg" from this name in all.gyp as it is
530 # not limited to just Debug. 527 # not limited to just Debug.
531 # TODO(zhaoqin|bruening): Temporarily using VS2013 due to bugs in DrMemory.
532 # crbug.com/594808.
533 options=['--build-tool=ninja', '--', 'chromium_builder_dbg_drmemory_win'], 528 options=['--build-tool=ninja', '--', 'chromium_builder_dbg_drmemory_win'],
534 factory_properties={ 529 factory_properties={
535 'gclient_env': { 530 'gclient_env': {
536 'GYP_DEFINES' : ( 531 'GYP_DEFINES' : (
537 'build_for_tool=drmemory component=shared_library ' 532 'build_for_tool=drmemory component=shared_library '
538 'target_arch=x64'), 533 'target_arch=x64'),
539 'GYP_MSVS_VERSION': '2013',
540 'GYP_GENERATORS': 'ninja', 534 'GYP_GENERATORS': 'ninja',
541 }, 535 },
542 'package_pdb_files': True, 536 'package_pdb_files': True,
543 'trigger': 'chromium_win_drmemory_64', 537 'trigger': 'chromium_win_drmemory_64',
544 'build_url': chromium_win_drmemory_64_archive, 538 'build_url': chromium_win_drmemory_64_archive,
545 } 539 }
546 ) 540 )
547 541
548 # Windows Unit (DrMemory x64) 542 # Windows Unit (DrMemory x64)
549 f_chromium_rel_win_drmemory_64 = F_WIN_NINJA( 543 f_chromium_rel_win_drmemory_64 = F_WIN_NINJA(
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 # Adds common status and tools to this master. 1002 # Adds common status and tools to this master.
1009 master_utils.AutoSetupMaster(c, ActiveMaster, 1003 master_utils.AutoSetupMaster(c, ActiveMaster,
1010 public_html='../master.chromium/public_html', 1004 public_html='../master.chromium/public_html',
1011 templates=['../master.chromium/templates'], 1005 templates=['../master.chromium/templates'],
1012 tagComparator=master_poller.comparator, 1006 tagComparator=master_poller.comparator,
1013 enable_http_status_push=ActiveMaster.is_production_host) 1007 enable_http_status_push=ActiveMaster.is_production_host)
1014 1008
1015 if ActiveMaster.is_production_host: 1009 if ActiveMaster.is_production_host:
1016 import notifier_cfg 1010 import notifier_cfg
1017 notifier_cfg.Update(config, ActiveMaster, c) 1011 notifier_cfg.Update(config, ActiveMaster, c)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698