OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 # | 3 # |
4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
9 | 9 |
10 # These modules come from scripts, which must be in the PYTHONPATH. | 10 # These modules come from scripts, which must be in the PYTHONPATH. |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 options=ninja_options, | 147 options=ninja_options, |
148 tests=tests, | 148 tests=tests, |
149 factory_properties={ | 149 factory_properties={ |
150 'gclient_env': {'GYP_DEFINES': 'host_arch=x64 target_arch=x64'} | 150 'gclient_env': {'GYP_DEFINES': 'host_arch=x64 target_arch=x64'} |
151 }) | 151 }) |
152 } | 152 } |
153 | 153 |
154 b_ios = { | 154 b_ios = { |
155 'name': 'ios', | 155 'name': 'ios', |
156 'factory': mac().WebRTCFactory( | 156 'factory': mac().WebRTCFactory( |
157 target='Debug', | 157 target='Debug-iphoneos', |
158 slave_type='Trybot', | 158 slave_type='Trybot', |
159 options=ninja_options, | 159 options=ninja_options, |
160 factory_properties=mac_ios_factory_properties) | 160 factory_properties=mac_ios_factory_properties) |
161 } | 161 } |
162 | 162 |
163 b_ios_rel = { | 163 b_ios_rel = { |
164 'name': 'ios_rel', | 164 'name': 'ios_rel', |
165 'factory': mac().WebRTCFactory( | 165 'factory': mac().WebRTCFactory( |
166 target='Release', | 166 target='Release-iphoneos', |
167 slave_type='Trybot', | 167 slave_type='Trybot', |
168 options=ninja_options, | 168 options=ninja_options, |
169 factory_properties=mac_ios_factory_properties) | 169 factory_properties=mac_ios_factory_properties) |
170 } | 170 } |
171 | 171 |
172 b_mac_asan = { | 172 b_mac_asan = { |
173 'name': 'mac_asan', | 173 'name': 'mac_asan', |
174 'factory': mac().WebRTCFactory( | 174 'factory': mac().WebRTCFactory( |
175 target='Release', | 175 target='Release', |
176 slave_type='Trybot', | 176 slave_type='Trybot', |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 c['buildCacheSize'] = 100 | 371 c['buildCacheSize'] = 100 |
372 | 372 |
373 ####### PROJECT IDENTITY | 373 ####### PROJECT IDENTITY |
374 | 374 |
375 # The 'projectURL' string will be used to provide a link | 375 # The 'projectURL' string will be used to provide a link |
376 # from buildbot HTML pages to your project's home page. | 376 # from buildbot HTML pages to your project's home page. |
377 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 377 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
378 | 378 |
379 # Buildbot master url: | 379 # Buildbot master url: |
380 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.webrtc/' | 380 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.webrtc/' |
OLD | NEW |