Chromium Code Reviews| 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 | 22 |
| 23 NORMAL_TESTS = ( | 23 NORMAL_TESTS = ( |
| 24 'audio_decoder_unittests', | 24 'audio_decoder_unittests', |
| 25 'common_audio_unittests', | 25 'common_audio_unittests', |
| 26 'common_video_unittests', | 26 'common_video_unittests', |
| 27 'modules_tests', | 27 'modules_tests', |
| 28 'modules_unittests', | 28 'modules_unittests', |
| 29 'peerconnection_unittests', | 29 'peerconnection_unittests', |
| 30 'rtc_media_unittests', | 30 'rtc_media_unittests', |
| 31 'rtc_pc_unittests', | 31 'rtc_pc_unittests', |
| 32 'rtc_stats_unittests', | |
| 32 'rtc_unittests', | 33 'rtc_unittests', |
| 33 'system_wrappers_unittests', | 34 'system_wrappers_unittests', |
| 34 'test_support_unittests', | 35 'test_support_unittests', |
| 35 'tools_unittests', | 36 'tools_unittests', |
| 36 'video_engine_tests', | 37 'video_engine_tests', |
| 37 'voice_engine_unittests', | 38 'voice_engine_unittests', |
| 38 'xmllite_xmpp_unittests', | 39 'xmllite_xmpp_unittests', |
| 39 ) | 40 ) |
| 40 | 41 |
| 41 # Android APK tests. | 42 # Android APK tests. |
| 42 ANDROID_APK_TESTS = ( | 43 ANDROID_APK_TESTS = ( |
| 43 'audio_decoder_unittests', | 44 'audio_decoder_unittests', |
| 44 'common_audio_unittests', | 45 'common_audio_unittests', |
| 45 'common_video_unittests', | 46 'common_video_unittests', |
| 46 'modules_tests', | 47 'modules_tests', |
| 47 'modules_unittests', | 48 'modules_unittests', |
| 48 'peerconnection_unittests', | 49 'peerconnection_unittests', |
| 50 'rtc_stats_unittests', | |
|
hbos_chromium
2016/09/14 13:35:41
Hmm... We added the "//testing/android/native_test
kjellander_chromium
2016/09/15 08:13:38
This has nothing to do with GYP/GN. It's just a li
| |
| 49 'rtc_unittests', | 51 'rtc_unittests', |
| 50 'system_wrappers_unittests', | 52 'system_wrappers_unittests', |
| 51 'test_support_unittests', | 53 'test_support_unittests', |
| 52 'tools_unittests', | 54 'tools_unittests', |
| 53 'video_engine_tests', | 55 'video_engine_tests', |
| 54 'voice_engine_unittests', | 56 'voice_engine_unittests', |
| 55 'webrtc_nonparallel_tests', | 57 'webrtc_nonparallel_tests', |
| 56 ) | 58 ) |
| 57 | 59 |
| 58 ANDROID_INSTRUMENTATION_TESTS = [ | 60 ANDROID_INSTRUMENTATION_TESTS = [ |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 307 def clean_test_output(self): | 309 def clean_test_output(self): |
| 308 """Remove all test output in out/, since we have tests leaking files.""" | 310 """Remove all test output in out/, since we have tests leaking files.""" |
| 309 out_dir = self.m.path['checkout'].join('out') | 311 out_dir = self.m.path['checkout'].join('out') |
| 310 self.m.python('clean test output files', | 312 self.m.python('clean test output files', |
| 311 script=self.resource('cleanup_files.py'), | 313 script=self.resource('cleanup_files.py'), |
| 312 args=[out_dir], | 314 args=[out_dir], |
| 313 infra_step=True) | 315 infra_step=True) |
| 314 | 316 |
| 315 def virtual_webcam_check(self): | 317 def virtual_webcam_check(self): |
| 316 self.m.python('webcam_check', self.resource('ensure_webcam_is_running.py')) | 318 self.m.python('webcam_check', self.resource('ensure_webcam_is_running.py')) |
| OLD | NEW |