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 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
762 builder_name='ios_rel_device', | 762 builder_name='ios_rel_device', |
763 target='Release', | 763 target='Release', |
764 options=[ | 764 options=[ |
765 '--', | 765 '--', |
766 '-project', '../build/all.xcodeproj', | 766 '-project', '../build/all.xcodeproj', |
767 '-sdk', 'iphoneos6.0', | 767 '-sdk', 'iphoneos6.0', |
768 '-target', 'All', | 768 '-target', 'All', |
769 ], | 769 ], |
770 factory_properties={ | 770 factory_properties={ |
771 'app_name': 'Chromium.app', | 771 'app_name': 'Chromium.app', |
| 772 'test_platform': 'ios-simulator', |
772 'gclient_deps': 'ios', | 773 'gclient_deps': 'ios', |
773 }, | 774 }, |
774 gclient_env={ | 775 gclient_env={ |
775 'GYP_DEFINES': 'component=static_library OS=ios chromium_ios_signing=0', | 776 'GYP_DEFINES': 'component=static_library OS=ios chromium_ios_signing=0', |
776 'GYP_GENERATOR_FLAGS': 'xcode_project_version=3.2', | 777 'GYP_GENERATOR_FLAGS': 'xcode_project_version=3.2', |
777 }, | 778 }, |
778 ) | 779 ) |
779 | 780 |
780 b_ios_dbg_simulator = CreateBuilder( | 781 b_ios_dbg_simulator = CreateBuilder( |
781 platform='ios', | 782 platform='ios', |
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1832 ####### PROJECT IDENTITY | 1833 ####### PROJECT IDENTITY |
1833 | 1834 |
1834 # The 'projectURL' string will be used to provide a link | 1835 # The 'projectURL' string will be used to provide a link |
1835 # from buildbot HTML pages to your project's home page. | 1836 # from buildbot HTML pages to your project's home page. |
1836 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1837 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
1837 | 1838 |
1838 # Buildbot master url: | 1839 # Buildbot master url: |
1839 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1840 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
1840 | 1841 |
1841 # vi: set ts=4 sts=2 sw=2 et: | 1842 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |