OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 re | 5 import re |
6 | 6 |
7 DEPS = [ | 7 DEPS = [ |
8 'bot_update', | 8 'bot_update', |
9 'chromium', | 9 'chromium', |
10 'chromium_tests', | 10 'chromium_tests', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 'TARGET_BITS': 64, | 84 'TARGET_BITS': 64, |
85 }, | 85 }, |
86 'exclude_compile_all': True, | 86 'exclude_compile_all': True, |
87 'chromium_config': 'chromium_asan', | 87 'chromium_config': 'chromium_asan', |
88 'compile_only': False, | 88 'compile_only': False, |
89 'testing': { | 89 'testing': { |
90 'platform': 'linux', | 90 'platform': 'linux', |
91 'test_spec_file': 'chromium_memory_trybot.json', | 91 'test_spec_file': 'chromium_memory_trybot.json', |
92 }, | 92 }, |
93 }, | 93 }, |
94 'linux_asan': { | |
Paweł Hajdan Jr.
2014/08/26 16:27:20
The builder name should match above pattern and th
| |
95 'chromium_config_kwargs': { | |
96 'BUILD_CONFIG': 'Release', | |
97 'TARGET_BITS': 64, | |
98 }, | |
99 'exclude_compile_all': True, | |
100 'chromium_config': 'chromium_asan', | |
101 'compile_only': False, | |
102 'testing': { | |
103 'platform': 'linux', | |
104 'test_spec_file': 'chromium_memory_trybot.json', | |
105 }, | |
106 }, | |
94 # Fake builder to provide testing coverage for non-bot_update. | 107 # Fake builder to provide testing coverage for non-bot_update. |
95 'linux_no_bot_update': { | 108 'linux_no_bot_update': { |
96 'chromium_config_kwargs': { | 109 'chromium_config_kwargs': { |
97 'BUILD_CONFIG': 'Release', | 110 'BUILD_CONFIG': 'Release', |
98 'TARGET_BITS': 64, | 111 'TARGET_BITS': 64, |
99 }, | 112 }, |
100 'chromium_config': 'chromium', | 113 'chromium_config': 'chromium', |
101 'compile_only': False, | 114 'compile_only': False, |
102 'testing': { | 115 'testing': { |
103 'platform': 'linux', | 116 'platform': 'linux', |
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1306 'filter_compile_builders': 'linux_chromium_browser_asan_rel', | 1319 'filter_compile_builders': 'linux_chromium_browser_asan_rel', |
1307 }) | 1320 }) |
1308 ) + | 1321 ) + |
1309 api.override_step_data( | 1322 api.override_step_data( |
1310 'analyze', | 1323 'analyze', |
1311 api.json.output({'status': 'Found dependency', | 1324 api.json.output({'status': 'Found dependency', |
1312 'targets': ['browser_tests', 'base_unittests'], | 1325 'targets': ['browser_tests', 'base_unittests'], |
1313 'build_targets': ['base_unittests']})) | 1326 'build_targets': ['base_unittests']})) |
1314 ) | 1327 ) |
1315 | 1328 |
OLD | NEW |