OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2013 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 import collections | 7 import collections |
8 import copy | 8 import copy |
9 import json | 9 import json |
10 import os | 10 import os |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 std_host_tests = ['check_webview_licenses'] | 120 std_host_tests = ['check_webview_licenses'] |
121 std_build_steps = ['compile', 'zip_build'] | 121 std_build_steps = ['compile', 'zip_build'] |
122 std_test_steps = ['extract_build'] | 122 std_test_steps = ['extract_build'] |
123 std_tests = ['ui', 'unit'] | 123 std_tests = ['ui', 'unit'] |
124 telemetry_tests = ['telemetry_perf_unittests'] | 124 telemetry_tests = ['telemetry_perf_unittests'] |
125 telemetry_tests_user_build = ['telemetry_unittests', | 125 telemetry_tests_user_build = ['telemetry_unittests', |
126 'telemetry_perf_unittests'] | 126 'telemetry_perf_unittests'] |
127 trial_tests = [ | 127 trial_tests = [ |
128 'base_junit_tests', | 128 'base_junit_tests', |
129 'components_browsertests', | 129 'components_browsertests', |
| 130 'gfx_unittests', |
130 ] | 131 ] |
131 flakiness_server = ( | 132 flakiness_server = ( |
132 '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER) | 133 '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER) |
133 experimental = ['--experimental'] | 134 experimental = ['--experimental'] |
134 bisect_chrome_output_dir = os.path.abspath( | 135 bisect_chrome_output_dir = os.path.abspath( |
135 os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir, | 136 os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, os.pardir, |
136 os.pardir, 'bisect', 'src', 'out')) | 137 os.pardir, 'bisect', 'src', 'out')) |
137 B = BotConfig | 138 B = BotConfig |
138 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None: | 139 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None: |
139 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args, | 140 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args, |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 for command in commands: | 310 for command in commands: |
310 print 'Will run: ', bb_utils.CommandToString(command) | 311 print 'Will run: ', bb_utils.CommandToString(command) |
311 print | 312 print |
312 | 313 |
313 env = GetEnvironment(bot_config.host_obj, options.testing) | 314 env = GetEnvironment(bot_config.host_obj, options.testing) |
314 return RunBotCommands(options, commands, env) | 315 return RunBotCommands(options, commands, env) |
315 | 316 |
316 | 317 |
317 if __name__ == '__main__': | 318 if __name__ == '__main__': |
318 sys.exit(main(sys.argv)) | 319 sys.exit(main(sys.argv)) |
OLD | NEW |