| 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-memory-fyi-archive', | 9 'build_gs_bucket': 'chromium-memory-full-archive', |
| 10 }, | 10 }, |
| 11 'builders': { | 11 'builders': { |
| 12 'Chromium Linux MSan Builder': { | 12 'Chromium Linux MSan Builder': { |
| 13 'chromium_config': 'chromium_msan', | 13 'chromium_config': 'chromium_msan', |
| 14 'gclient_config': 'chromium', | 14 'gclient_config': 'chromium', |
| 15 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'], | 15 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'], |
| 16 'GYP_DEFINES': { | 16 'GYP_DEFINES': { |
| 17 'msan_track_origins': 2, | 17 'msan_track_origins': 2, |
| 18 }, | 18 }, |
| 19 'chromium_config_kwargs': { | 19 'chromium_config_kwargs': { |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 steps.generate_isolated_script, | 105 steps.generate_isolated_script, |
| 106 ], | 106 ], |
| 107 'parent_buildername': 'Chromium Linux TSan Builder', | 107 'parent_buildername': 'Chromium Linux TSan Builder', |
| 108 'testing': { | 108 'testing': { |
| 109 'platform': 'linux', | 109 'platform': 'linux', |
| 110 }, | 110 }, |
| 111 'enable_swarming': True, | 111 'enable_swarming': True, |
| 112 }, | 112 }, |
| 113 }, | 113 }, |
| 114 } | 114 } |
| OLD | NEW |