| 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 from recipe_engine.types import freeze | 5 from recipe_engine.types import freeze |
| 6 from recipe_engine import recipe_api | 6 from recipe_engine import recipe_api |
| 7 from . import builders | 7 from . import builders |
| 8 from . import steps | 8 from . import steps |
| 9 | 9 |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'common_video_unittests', | 22 'common_video_unittests', |
| 23 'libjingle_media_unittest', | 23 'libjingle_media_unittest', |
| 24 'libjingle_p2p_unittest', | 24 'libjingle_p2p_unittest', |
| 25 'libjingle_peerconnection_unittest', | 25 'libjingle_peerconnection_unittest', |
| 26 'modules_tests', | 26 'modules_tests', |
| 27 'modules_unittests', | 27 'modules_unittests', |
| 28 'rtc_unittests', | 28 'rtc_unittests', |
| 29 'system_wrappers_unittests', | 29 'system_wrappers_unittests', |
| 30 'test_support_unittests', | 30 'test_support_unittests', |
| 31 'tools_unittests', | 31 'tools_unittests', |
| 32 'video_engine_core_unittests', | |
| 33 'video_engine_tests', | 32 'video_engine_tests', |
| 34 'voice_engine_unittests', | 33 'voice_engine_unittests', |
| 35 ) | 34 ) |
| 36 | 35 |
| 37 # Android APK tests. | 36 # Android APK tests. |
| 38 ANDROID_APK_TESTS = freeze({ | 37 ANDROID_APK_TESTS = freeze({ |
| 39 'audio_decoder_unittests': | 38 'audio_decoder_unittests': |
| 40 'webrtc/modules/audio_decoder_unittests.isolate', | 39 'webrtc/modules/audio_decoder_unittests.isolate', |
| 41 'common_audio_unittests': | 40 'common_audio_unittests': |
| 42 'webrtc/common_audio/common_audio_unittests.isolate', | 41 'webrtc/common_audio/common_audio_unittests.isolate', |
| 43 'common_video_unittests': | 42 'common_video_unittests': |
| 44 'webrtc/common_video/common_video_unittests.isolate', | 43 'webrtc/common_video/common_video_unittests.isolate', |
| 45 'modules_tests': 'webrtc/modules/modules_tests.isolate', | 44 'modules_tests': 'webrtc/modules/modules_tests.isolate', |
| 46 'modules_unittests': 'webrtc/modules/modules_unittests.isolate', | 45 'modules_unittests': 'webrtc/modules/modules_unittests.isolate', |
| 47 'system_wrappers_unittests': | 46 'system_wrappers_unittests': |
| 48 'webrtc/system_wrappers/system_wrappers_unittests.isolate', | 47 'webrtc/system_wrappers/system_wrappers_unittests.isolate', |
| 49 'test_support_unittests': 'webrtc/test/test_support_unittests.isolate', | 48 'test_support_unittests': 'webrtc/test/test_support_unittests.isolate', |
| 50 'tools_unittests': 'webrtc/tools/tools_unittests.isolate', | 49 'tools_unittests': 'webrtc/tools/tools_unittests.isolate', |
| 51 'video_engine_core_unittests': | |
| 52 'webrtc/video_engine/video_engine_core_unittests.isolate', | |
| 53 'video_engine_tests': 'webrtc/video_engine_tests.isolate', | 50 'video_engine_tests': 'webrtc/video_engine_tests.isolate', |
| 54 'voice_engine_unittests': | 51 'voice_engine_unittests': |
| 55 'webrtc/voice_engine/voice_engine_unittests.isolate', | 52 'webrtc/voice_engine/voice_engine_unittests.isolate', |
| 56 'webrtc_nonparallel_tests': 'webrtc/webrtc_nonparallel_tests.isolate', | 53 'webrtc_nonparallel_tests': 'webrtc/webrtc_nonparallel_tests.isolate', |
| 57 }) | 54 }) |
| 58 | 55 |
| 59 ANDROID_APK_PERF_TESTS = freeze({ | 56 ANDROID_APK_PERF_TESTS = freeze({ |
| 60 'webrtc_perf_tests': 'webrtc/webrtc_perf_tests.isolate' | 57 'webrtc_perf_tests': 'webrtc/webrtc_perf_tests.isolate' |
| 61 }) | 58 }) |
| 62 | 59 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 def clean_test_output(self): | 340 def clean_test_output(self): |
| 344 """Remove all test output in out/, since we have tests leaking files.""" | 341 """Remove all test output in out/, since we have tests leaking files.""" |
| 345 out_dir = self.m.path['checkout'].join('out') | 342 out_dir = self.m.path['checkout'].join('out') |
| 346 self.m.python('clean test output files', | 343 self.m.python('clean test output files', |
| 347 script=self.resource('cleanup_files.py'), | 344 script=self.resource('cleanup_files.py'), |
| 348 args=[out_dir], | 345 args=[out_dir], |
| 349 infra_step=True) | 346 infra_step=True) |
| 350 | 347 |
| 351 def virtual_webcam_check(self): | 348 def virtual_webcam_check(self): |
| 352 self.m.python('webcam_check', self.resource('ensure_webcam_is_running.py')) | 349 self.m.python('webcam_check', self.resource('ensure_webcam_is_running.py')) |
| OLD | NEW |