| Index: scripts/slave/recipe_modules/chromium_tests/chromium_webrtc.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_webrtc.py b/scripts/slave/recipe_modules/chromium_tests/chromium_webrtc.py
|
| index 08eda27e0a9bf0f5c7b437bd238a64b03abbb78e..784df2dd7bd58f82ad1854f721cd3360855fbd3f 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_webrtc.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_webrtc.py
|
| @@ -45,23 +45,14 @@ def BaseSpec(bot_type, chromium_apply_config, gclient_config, platform,
|
|
|
|
|
| def BuildSpec(platform, target_bits, build_config='Release',
|
| - gclient_config='chromium_webrtc', mb=False):
|
| + gclient_config='chromium_webrtc'):
|
| spec = BaseSpec(
|
| bot_type='builder',
|
| - chromium_apply_config=['dcheck', 'blink_logging_on'],
|
| + chromium_apply_config=['dcheck', 'blink_logging_on', 'mb'],
|
| gclient_config=gclient_config,
|
| platform=platform,
|
| target_bits=target_bits,
|
| build_config=build_config)
|
| -
|
| - if platform == 'android':
|
| - spec['compile_targets'] = []
|
| - else:
|
| - spec['compile_targets'] = ['chromium_builder_webrtc']
|
| -
|
| - if mb:
|
| - spec['chromium_apply_config'].append('mb')
|
| -
|
| return spec
|
|
|
|
|
|
|