| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from master import master_config | 5 from master import master_config |
| 6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
| 7 | 7 |
| 8 defaults = {} | 8 defaults = {} |
| 9 | 9 |
| 10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 # | 88 # |
| 89 # Mac Rel testers | 89 # Mac Rel testers |
| 90 # | 90 # |
| 91 B('Mac10.6 Tests (1)', 'rel_unit_1', 'testers', 'mac_rel_trigger', | 91 B('Mac10.6 Tests (1)', 'rel_unit_1', 'testers', 'mac_rel_trigger', |
| 92 notify_on_missing=True) | 92 notify_on_missing=True) |
| 93 F('rel_unit_1', mac_tester().ChromiumFactory( | 93 F('rel_unit_1', mac_tester().ChromiumFactory( |
| 94 slave_type='Tester', | 94 slave_type='Tester', |
| 95 build_url=rel_archive, | 95 build_url=rel_archive, |
| 96 tests=[ | 96 tests=[ |
| 97 'app_list_unittests', |
| 97 'base_unittests', | 98 'base_unittests', |
| 98 'browser_tests', | 99 'browser_tests', |
| 99 'cacheinvalidation_unittests', | 100 'cacheinvalidation_unittests', |
| 100 'cc_unittests', | 101 'cc_unittests', |
| 101 'chromedriver2_unittests', | 102 'chromedriver2_unittests', |
| 102 'content_browsertests', | 103 'content_browsertests', |
| 103 'crypto_unittests', | 104 'crypto_unittests', |
| 104 'googleurl', | 105 'googleurl', |
| 105 'gpu', | 106 'gpu', |
| 106 'interactive_ui_tests', | 107 'interactive_ui_tests', |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 'test_platform': 'ios-simulator', | 343 'test_platform': 'ios-simulator', |
| 343 'gclient_deps': 'ios', | 344 'gclient_deps': 'ios', |
| 344 'gclient_env': { | 345 'gclient_env': { |
| 345 'GYP_DEFINES': 'component=static_library OS=ios chromium_ios_signing=0', | 346 'GYP_DEFINES': 'component=static_library OS=ios chromium_ios_signing=0', |
| 346 'GYP_GENERATOR_FLAGS': 'xcode_project_version=3.2', | 347 'GYP_GENERATOR_FLAGS': 'xcode_project_version=3.2', |
| 347 }, | 348 }, |
| 348 })) | 349 })) |
| 349 | 350 |
| 350 def Update(config, active_master, c): | 351 def Update(config, active_master, c): |
| 351 return helper.Update(c) | 352 return helper.Update(c) |
| OLD | NEW |