| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import socket | 10 import socket |
| (...skipping 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1501 'factory': m_chromium_win_ninja.ChromiumFactory( | 1501 'factory': m_chromium_win_ninja.ChromiumFactory( |
| 1502 slave_type='Trybot', | 1502 slave_type='Trybot', |
| 1503 target='Debug', | 1503 target='Debug', |
| 1504 options=['--build-tool=ninja', '--compiler=goma', '--', 'all_webkit'], | 1504 options=['--build-tool=ninja', '--compiler=goma', '--', 'all_webkit'], |
| 1505 tests=blink_tests, | 1505 tests=blink_tests, |
| 1506 factory_properties={ | 1506 factory_properties={ |
| 1507 'blink_config': 'blink', | 1507 'blink_config': 'blink', |
| 1508 'archive_webkit_results': ActiveMaster.is_production_host, | 1508 'archive_webkit_results': ActiveMaster.is_production_host, |
| 1509 'gclient_env': { | 1509 'gclient_env': { |
| 1510 'GYP_GENERATORS': 'ninja', | 1510 'GYP_GENERATORS': 'ninja', |
| 1511 'GYP_DEFINES': 'chromium_win_pch=0', | 1511 'GYP_DEFINES': 'chromium_win_pch=0 use_aura=0', |
| 1512 }, | 1512 }, |
| 1513 'gs_bucket': gs_bucket_layout_test_archives, | 1513 'gs_bucket': gs_bucket_layout_test_archives, |
| 1514 }), | 1514 }), |
| 1515 } | 1515 } |
| 1516 | 1516 |
| 1517 b_win_layout_rel = { | 1517 b_win_layout_rel = { |
| 1518 'name': 'win_layout_rel', | 1518 'name': 'win_layout_rel', |
| 1519 # Reuse the directory. | 1519 # Reuse the directory. |
| 1520 'slavebuilddir': 'win_layout', | 1520 'slavebuilddir': 'win_layout', |
| 1521 'factory': m_chromium_win_ninja.ChromiumFactory( | 1521 'factory': m_chromium_win_ninja.ChromiumFactory( |
| 1522 slave_type='Trybot', | 1522 slave_type='Trybot', |
| 1523 target='Release', | 1523 target='Release', |
| 1524 options=['--build-tool=ninja', '--compiler=goma', '--', 'all_webkit'], | 1524 options=['--build-tool=ninja', '--compiler=goma', '--', 'all_webkit'], |
| 1525 tests=blink_tests, | 1525 tests=blink_tests, |
| 1526 factory_properties={ | 1526 factory_properties={ |
| 1527 'archive_webkit_results': ActiveMaster.is_production_host, | 1527 'archive_webkit_results': ActiveMaster.is_production_host, |
| 1528 'blink_config': 'blink', | 1528 'blink_config': 'blink', |
| 1529 'gclient_env': { | 1529 'gclient_env': { |
| 1530 'GYP_DEFINES': 'chromium_win_pch=0 fastbuild=1', | 1530 'GYP_DEFINES': 'chromium_win_pch=0 fastbuild=1 use_aura=0', |
| 1531 'GYP_GENERATORS': 'ninja', | 1531 'GYP_GENERATORS': 'ninja', |
| 1532 }, | 1532 }, |
| 1533 'gs_bucket': gs_bucket_layout_test_archives, | 1533 'gs_bucket': gs_bucket_layout_test_archives, |
| 1534 }), | 1534 }), |
| 1535 } | 1535 } |
| 1536 | 1536 |
| 1537 blink_builders = [] | 1537 blink_builders = [] |
| 1538 for platform in ('win', 'mac', 'linux'): | 1538 for platform in ('win', 'mac', 'linux'): |
| 1539 for targ in ('_rel', ''): | 1539 for targ in ('_rel', ''): |
| 1540 for build_dir in ('_git', ''): | 1540 for build_dir in ('_git', ''): |
| (...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2319 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2319 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2320 | 2320 |
| 2321 # Buildbot master url: | 2321 # Buildbot master url: |
| 2322 if ActiveMaster.is_production_host: | 2322 if ActiveMaster.is_production_host: |
| 2323 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2323 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 2324 else: | 2324 else: |
| 2325 c['buildbotURL'] = 'http://%s:%d/' % ( | 2325 c['buildbotURL'] = 'http://%s:%d/' % ( |
| 2326 socket.getfqdn(), ActiveMaster.master_port) | 2326 socket.getfqdn(), ActiveMaster.master_port) |
| 2327 | 2327 |
| 2328 # vi: set ts=4 sts=2 sw=2 et: | 2328 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |