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 23 matching lines...) Expand all Loading... |
34 c['change_source'] = [] | 34 c['change_source'] = [] |
35 | 35 |
36 # Avoid merging requests. | 36 # Avoid merging requests. |
37 c['mergeRequests'] = lambda *_: False | 37 c['mergeRequests'] = lambda *_: False |
38 | 38 |
39 ####### BUILDERS | 39 ####### BUILDERS |
40 url = config.Master.webrtc_url | 40 url = config.Master.webrtc_url |
41 branch = 'trunk' | 41 branch = 'trunk' |
42 | 42 |
43 def linux(): | 43 def linux(): |
44 return webrtc_factory.WebRTCFactory('src/out', 'linux2', url, branch) | 44 return webrtc_factory.WebRTCFactory('src/out', 'linux2') |
45 def mac(): | 45 def mac(): |
46 return webrtc_factory.WebRTCFactory('src/out', 'darwin', url, branch) | 46 return webrtc_factory.WebRTCFactory('src/out', 'darwin') |
47 def macIos(): | 47 def macIos(): |
48 return webrtc_factory.WebRTCFactory('', 'darwin', url, branch, | 48 return webrtc_factory.WebRTCFactory('', 'darwin', nohooks_on_update=True) |
49 nohooks_on_update=True) | |
50 def win(): | 49 def win(): |
51 return webrtc_factory.WebRTCFactory('src/build', 'win32', url, branch) | 50 return webrtc_factory.WebRTCFactory('src/build', 'win32') |
52 def winNinja(): | 51 def winNinja(): |
53 return webrtc_factory.WebRTCFactory('src/out', 'win32', url, branch) | 52 return webrtc_factory.WebRTCFactory('src/out', 'win32') |
54 def android(): | 53 def android(): |
55 return webrtc_factory.WebRTCFactory('', 'linux2', url, branch, | 54 return webrtc_factory.WebRTCFactory('', 'linux2', nohooks_on_update=True, |
56 nohooks_on_update=True, | |
57 target_os='android') | 55 target_os='android') |
58 | 56 |
59 tests = [ | 57 tests = [ |
60 'audio_decoder_unittests', | 58 'audio_decoder_unittests', |
61 'common_audio_unittests', | 59 'common_audio_unittests', |
62 'common_video_unittests', | 60 'common_video_unittests', |
63 'metrics_unittests', | 61 'metrics_unittests', |
64 'modules_integrationtests', | 62 'modules_integrationtests', |
65 'modules_unittests', | 63 'modules_unittests', |
66 'neteq_unittests', | 64 'neteq_unittests', |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 c['buildCacheSize'] = 100 | 354 c['buildCacheSize'] = 100 |
357 | 355 |
358 ####### PROJECT IDENTITY | 356 ####### PROJECT IDENTITY |
359 | 357 |
360 # The 'projectURL' string will be used to provide a link | 358 # The 'projectURL' string will be used to provide a link |
361 # from buildbot HTML pages to your project's home page. | 359 # from buildbot HTML pages to your project's home page. |
362 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
363 | 361 |
364 # Buildbot master url: | 362 # Buildbot master url: |
365 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.webrtc/' | 363 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.webrtc/' |
OLD | NEW |