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 import copy | 5 import copy |
6 | 6 |
7 from slave import recipe_api | 7 from slave import recipe_api |
8 | 8 |
9 | 9 |
10 # Different types of builds this recipe module can do. | 10 # Different types of builds this recipe module can do. |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'gclient_config': 'ios', | 58 'gclient_config': 'ios', |
59 }, | 59 }, |
60 'chromium_ios_ninja': { | 60 'chromium_ios_ninja': { |
61 'chromium_config': 'chromium_ios_ninja', | 61 'chromium_config': 'chromium_ios_ninja', |
62 'gclient_config': 'ios', | 62 'gclient_config': 'ios', |
63 }, | 63 }, |
64 'chromium_ios_simulator': { | 64 'chromium_ios_simulator': { |
65 'chromium_config': 'chromium_ios_simulator', | 65 'chromium_config': 'chromium_ios_simulator', |
66 'gclient_config': 'ios', | 66 'gclient_config': 'ios', |
67 }, | 67 }, |
| 68 'chromium_msan': { |
| 69 'chromium_config': 'chromium_msan', |
| 70 'gclient_config': 'chromium', |
| 71 }, |
68 'chromium_no_goma': { | 72 'chromium_no_goma': { |
69 'chromium_config': 'chromium_no_goma', | 73 'chromium_config': 'chromium_no_goma', |
70 'gclient_config': 'chromium', | 74 'gclient_config': 'chromium', |
71 }, | 75 }, |
72 'chromium_oilpan': { | 76 'chromium_oilpan': { |
73 'chromium_config': 'chromium_official', | 77 'chromium_config': 'chromium_official', |
74 'chromium_apply_config': ['oilpan'], | 78 'chromium_apply_config': ['oilpan'], |
75 'gclient_config': 'chromium', | 79 'gclient_config': 'chromium', |
76 'gclient_apply_config': ['chrome_internal'], | 80 'gclient_apply_config': ['chrome_internal'], |
77 }, | 81 }, |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 self.m.chromium.crash_handler() | 321 self.m.chromium.crash_handler() |
318 | 322 |
319 try: | 323 try: |
320 return test_runner() | 324 return test_runner() |
321 finally: | 325 finally: |
322 if self.m.platform.is_win: | 326 if self.m.platform.is_win: |
323 self.m.chromium.process_dumps() | 327 self.m.chromium.process_dumps() |
324 | 328 |
325 if self.m.chromium.c.TARGET_PLATFORM == 'android': | 329 if self.m.chromium.c.TARGET_PLATFORM == 'android': |
326 self.m.chromium_android.common_tests_final_steps() | 330 self.m.chromium_android.common_tests_final_steps() |
OLD | NEW |