| 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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 b_ios_dbg_simulator = CreateBuilder( | 1010 b_ios_dbg_simulator = CreateBuilder( |
| 1011 platform='ios', | 1011 platform='ios', |
| 1012 builder_name='ios_dbg_simulator', | 1012 builder_name='ios_dbg_simulator', |
| 1013 target='Debug', | 1013 target='Debug', |
| 1014 tests=[ | 1014 tests=[ |
| 1015 'base_unittests_br', | 1015 'base_unittests_br', |
| 1016 'buildrunner_tests', | 1016 'buildrunner_tests', |
| 1017 'content_unittests_br', | 1017 'content_unittests_br', |
| 1018 'crypto_br', | 1018 'crypto_br', |
| 1019 'googleurl_br', | 1019 'googleurl_br', |
| 1020 'media_br', | |
| 1021 'net_br', | 1020 'net_br', |
| 1022 'ui_unittests_br', | 1021 'ui_unittests_br', |
| 1023 'unit_sql_br', | 1022 'unit_sql_br', |
| 1024 'unit_sync_br', | 1023 'unit_sync_br', |
| 1025 'unit_unit_br', | 1024 'unit_unit_br', |
| 1026 ], | 1025 ], |
| 1027 options=[ | 1026 options=[ |
| 1028 '--', | 1027 '--', |
| 1029 '-project', '../build/all.xcodeproj', | 1028 '-project', '../build/all.xcodeproj', |
| 1030 '-sdk', 'iphonesimulator6.1', | 1029 '-sdk', 'iphonesimulator6.1', |
| (...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2320 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2319 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2321 | 2320 |
| 2322 # Buildbot master url: | 2321 # Buildbot master url: |
| 2323 if ActiveMaster.is_production_host: | 2322 if ActiveMaster.is_production_host: |
| 2324 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2323 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 2325 else: | 2324 else: |
| 2326 c['buildbotURL'] = 'http://%s:%d/' % ( | 2325 c['buildbotURL'] = 'http://%s:%d/' % ( |
| 2327 socket.getfqdn(), ActiveMaster.master_port) | 2326 socket.getfqdn(), ActiveMaster.master_port) |
| 2328 | 2327 |
| 2329 # vi: set ts=4 sts=2 sw=2 et: | 2328 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |