| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 """Recipe to test the deterministic build. | 5 """Recipe to test the deterministic build. |
| 6 """ | 6 """ |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'bot_update', | 9 'bot_update', |
| 10 'chromium', | 10 'chromium', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'Mac deterministic build': { | 38 'Mac deterministic build': { |
| 39 'chromium_config': 'chromium', | 39 'chromium_config': 'chromium', |
| 40 'gclient_config': 'chromium', | 40 'gclient_config': 'chromium', |
| 41 'platform': 'mac', | 41 'platform': 'mac', |
| 42 }, | 42 }, |
| 43 'Windows deterministic build': { | 43 'Windows deterministic build': { |
| 44 'chromium_config': 'chromium', | 44 'chromium_config': 'chromium', |
| 45 'gclient_config': 'chromium', | 45 'gclient_config': 'chromium', |
| 46 'platform': 'win', | 46 'platform': 'win', |
| 47 }, | 47 }, |
| 48 'Windows Clang deterministic build': { | 48 'ClangWinRepeatable': { |
| 49 'chromium_config': 'chromium_win_clang', | 49 'chromium_config': 'chromium_win_clang', |
| 50 'gclient_config': 'chromium', | 50 'gclient_config': 'chromium', |
| 51 'platform': 'win', | 51 'platform': 'win', |
| 52 }, | 52 }, |
| 53 } | 53 } |
| 54 DETERMINISTIC_BUILDERS['android_deterministic'] = ( | 54 DETERMINISTIC_BUILDERS['android_deterministic'] = ( |
| 55 DETERMINISTIC_BUILDERS['Android deterministic build']) | 55 DETERMINISTIC_BUILDERS['Android deterministic build']) |
| 56 DETERMINISTIC_BUILDERS['linux_deterministic'] = ( | 56 DETERMINISTIC_BUILDERS['linux_deterministic'] = ( |
| 57 DETERMINISTIC_BUILDERS['Linux deterministic build']) | 57 DETERMINISTIC_BUILDERS['Linux deterministic build']) |
| 58 DETERMINISTIC_BUILDERS['mac_deterministic'] = ( | 58 DETERMINISTIC_BUILDERS['mac_deterministic'] = ( |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 _sanitize_nonalpha(buildername)) | 160 _sanitize_nonalpha(buildername)) |
| 161 yield ( | 161 yield ( |
| 162 api.test(test_name) + | 162 api.test(test_name) + |
| 163 api.properties.scheduled() + | 163 api.properties.scheduled() + |
| 164 api.properties.generic(buildername=buildername, | 164 api.properties.generic(buildername=buildername, |
| 165 mastername=mastername) + | 165 mastername=mastername) + |
| 166 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + | 166 api.platform(DETERMINISTIC_BUILDERS[buildername]['platform'], 32) + |
| 167 api.properties(configuration='Release') + | 167 api.properties(configuration='Release') + |
| 168 api.step_data('remove_build_metadata', retcode=1) | 168 api.step_data('remove_build_metadata', retcode=1) |
| 169 ) | 169 ) |
| OLD | NEW |