| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 recipe_engine.types import freeze | 5 from recipe_engine.types import freeze |
| 6 | 6 |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'chromium', | 10 'chromium', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 def RunSteps(api): | 61 def RunSteps(api): |
| 62 webrtc = api.webrtc | 62 webrtc = api.webrtc |
| 63 webrtc.apply_bot_config(BUILDERS, RECIPE_CONFIGS) | 63 webrtc.apply_bot_config(BUILDERS, RECIPE_CONFIGS) |
| 64 | 64 |
| 65 api.webrtc.checkout() | 65 api.webrtc.checkout() |
| 66 api.chromium.ensure_goma() | 66 api.chromium.ensure_goma() |
| 67 api.chromium.runhooks() | 67 api.chromium.runhooks() |
| 68 | 68 |
| 69 BuildSteps(api, name='minimal') | 69 BuildSteps(api, name='minimal') |
| 70 BuildSteps(api, gn_arg='rtc_enable_intelligibility_enhancer=true') | 70 BuildSteps(api, gn_arg='rtc_enable_intelligibility_enhancer=true') |
| 71 api.chromium.runtest(test='modules_unittests', | |
| 72 args=['--gtest_filter=Intelligibility*']) | |
| 73 | 71 |
| 74 | 72 |
| 75 def GenTests(api): | 73 def GenTests(api): |
| 76 for test in api.chromium.gen_tests_for_builders(BUILDERS): | 74 for test in api.chromium.gen_tests_for_builders(BUILDERS): |
| 77 yield test | 75 yield test |
| OLD | NEW |