OLD | NEW |
| (Empty) |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
2 # | |
3 # Use of this source code is governed by a BSD-style license | |
4 # that can be found in the LICENSE file in the root of the source | |
5 # tree. An additional intellectual property rights grant can be found | |
6 # in the file PATENTS. All contributing project authors may | |
7 # be found in the AUTHORS file in the root of the source tree. | |
8 | |
9 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and | |
10 # test type classifications for the tests that are run on the bots. | |
11 # | |
12 # This file is based on testing/buildbot/gn_isolate_map.pyl for Chromium, but | |
13 # is covering WebRTC stand-alone tests instead. | |
14 # See https://cs.chromium.org/chromium/src/testing/buildbot/gn_isolate_map.pyl | |
15 # for more detailed documentation. | |
16 | |
17 { | |
18 "All": { | |
19 "label": "//:All", | |
20 "type": "additional_compile_target", | |
21 }, | |
22 "AppRTCMobileTest": { | |
23 "label": "//webrtc/examples:AppRTCMobileTest", | |
24 "type": "additional_compile_target", | |
25 }, | |
26 "AppRTCMobileTestStubbedVideoIO": { | |
27 "label": "//webrtc/examples:AppRTCMobileTestStubbedVideoIO", | |
28 "type": "additional_compile_target", | |
29 }, | |
30 "android_junit_tests": { | |
31 "label": "//webrtc:android_junit_tests", | |
32 "type": "junit_test", | |
33 }, | |
34 "audio_decoder_unittests": { | |
35 "label": "//webrtc/modules/audio_coding:audio_decoder_unittests", | |
36 "type": "console_test_launcher", | |
37 }, | |
38 "common_audio_unittests": { | |
39 "label": "//webrtc/common_audio:common_audio_unittests", | |
40 "type": "console_test_launcher", | |
41 }, | |
42 "common_video_unittests": { | |
43 "label": "//webrtc/common_video:common_video_unittests", | |
44 "type": "console_test_launcher", | |
45 }, | |
46 "libjingle_peerconnection_android_unittest": { | |
47 "label": "//webrtc/sdk/android:libjingle_peerconnection_android_unittest", | |
48 "type": "additional_compile_target", | |
49 }, | |
50 "low_bandwidth_audio_test": { | |
51 "label": "//webrtc/audio:low_bandwidth_audio_test", | |
52 "type": "console_test_launcher", | |
53 "args": [ | |
54 "--quick", | |
55 ], | |
56 }, | |
57 "modules_tests": { | |
58 "label": "//webrtc/modules:modules_tests", | |
59 "type": "console_test_launcher", | |
60 }, | |
61 "modules_unittests": { | |
62 "label": "//webrtc/modules:modules_unittests", | |
63 "type": "windowed_test_launcher", | |
64 }, | |
65 "ortc_unittests": { | |
66 "label": "//webrtc/ortc:ortc_unittests", | |
67 "type": "console_test_launcher", | |
68 }, | |
69 "peerconnection_unittests": { | |
70 "label": "//webrtc/pc:peerconnection_unittests", | |
71 "type": "console_test_launcher", | |
72 }, | |
73 "rtc_media_unittests": { | |
74 "label": "//webrtc/media:rtc_media_unittests", | |
75 "type": "console_test_launcher", | |
76 }, | |
77 "rtc_pc_unittests": { | |
78 "label": "//webrtc/pc:rtc_pc_unittests", | |
79 "type": "console_test_launcher", | |
80 }, | |
81 "rtc_stats_unittests": { | |
82 "label": "//webrtc/stats:rtc_stats_unittests", | |
83 "type": "console_test_launcher", | |
84 }, | |
85 "rtc_unittests": { | |
86 "label": "//webrtc:rtc_unittests", | |
87 "type": "console_test_launcher", | |
88 }, | |
89 "system_wrappers_unittests": { | |
90 "label": "//webrtc/system_wrappers:system_wrappers_unittests", | |
91 "type": "console_test_launcher", | |
92 }, | |
93 "test_support_unittests": { | |
94 "label": "//webrtc/test:test_support_unittests", | |
95 "type": "console_test_launcher", | |
96 }, | |
97 "tools_unittests": { | |
98 "label": "//webrtc/tools:tools_unittests", | |
99 "type": "console_test_launcher", | |
100 }, | |
101 "video_engine_tests": { | |
102 "label": "//webrtc:video_engine_tests", | |
103 "type": "console_test_launcher", | |
104 }, | |
105 "voice_engine_unittests": { | |
106 "label": "//webrtc/voice_engine:voice_engine_unittests", | |
107 "type": "console_test_launcher", | |
108 }, | |
109 "webrtc_nonparallel_tests": { | |
110 "label": "//webrtc:webrtc_nonparallel_tests", | |
111 "type": "non_parallel_console_test_launcher", | |
112 }, | |
113 "webrtc_perf_tests": { | |
114 "label": "//webrtc:webrtc_perf_tests", | |
115 "type": "console_test_launcher", | |
116 }, | |
117 } | |
OLD | NEW |