blob: e9eb538b3e8a584274c4096c86f96d5e543e0a82 [file] [log] [blame]
kjellanderbc59b062016-10-26 23:55:24 -07001# 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 },
ehmaldonado41f8a882017-03-08 04:22:36 -080026 "AppRTCMobileTestStubbedVideoIO": {
27 "label": "//webrtc/examples:AppRTCMobileTestStubbedVideoIO",
28 "type": "additional_compile_target",
29 },
kjellanderbc59b062016-10-26 23:55:24 -070030 "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 },
ehmaldonado25586ce2017-09-07 23:18:35 -070046 "isac_fix_test": {
47 "label": "//webrtc/modules/audio_coding:isac_fix_test",
48 "type": "console_test_launcher",
49 "args": [
50 "32000", "../../resources/speech_and_misc_wb.pcm",
51 "isac_speech_and_misc_wb.pcm",
52 ]
53 },
kjellanderbc59b062016-10-26 23:55:24 -070054 "libjingle_peerconnection_android_unittest": {
magjed768c6482016-12-06 04:29:37 -080055 "label": "//webrtc/sdk/android:libjingle_peerconnection_android_unittest",
kjellanderbc59b062016-10-26 23:55:24 -070056 "type": "additional_compile_target",
57 },
kjellander13722912017-03-22 08:02:38 -070058 "low_bandwidth_audio_test": {
59 "label": "//webrtc/audio:low_bandwidth_audio_test",
kjellander382f2b22017-04-11 04:07:01 -070060 "type": "console_test_launcher",
kjellander74e81262017-03-23 00:51:11 -070061 "args": [
62 "--quick",
63 ],
kjellander13722912017-03-22 08:02:38 -070064 },
kjellanderbc59b062016-10-26 23:55:24 -070065 "modules_tests": {
66 "label": "//webrtc/modules:modules_tests",
67 "type": "console_test_launcher",
68 },
69 "modules_unittests": {
70 "label": "//webrtc/modules:modules_unittests",
71 "type": "windowed_test_launcher",
72 },
kjellander25ae7662017-02-23 23:01:54 -080073 "ortc_unittests": {
74 "label": "//webrtc/ortc:ortc_unittests",
75 "type": "console_test_launcher",
76 },
kjellanderbc59b062016-10-26 23:55:24 -070077 "peerconnection_unittests": {
ossu7bb87ee2017-01-23 04:56:25 -080078 "label": "//webrtc/pc:peerconnection_unittests",
kjellanderbc59b062016-10-26 23:55:24 -070079 "type": "console_test_launcher",
80 },
81 "rtc_media_unittests": {
82 "label": "//webrtc/media:rtc_media_unittests",
83 "type": "console_test_launcher",
84 },
85 "rtc_pc_unittests": {
86 "label": "//webrtc/pc:rtc_pc_unittests",
87 "type": "console_test_launcher",
88 },
89 "rtc_stats_unittests": {
90 "label": "//webrtc/stats:rtc_stats_unittests",
91 "type": "console_test_launcher",
92 },
93 "rtc_unittests": {
94 "label": "//webrtc:rtc_unittests",
95 "type": "console_test_launcher",
96 },
97 "system_wrappers_unittests": {
98 "label": "//webrtc/system_wrappers:system_wrappers_unittests",
99 "type": "console_test_launcher",
100 },
101 "test_support_unittests": {
102 "label": "//webrtc/test:test_support_unittests",
103 "type": "console_test_launcher",
104 },
105 "tools_unittests": {
kjellanderd2b63cf2017-06-30 03:04:59 -0700106 "label": "//webrtc/rtc_tools:tools_unittests",
kjellanderbc59b062016-10-26 23:55:24 -0700107 "type": "console_test_launcher",
108 },
109 "video_engine_tests": {
110 "label": "//webrtc:video_engine_tests",
111 "type": "console_test_launcher",
112 },
113 "voice_engine_unittests": {
114 "label": "//webrtc/voice_engine:voice_engine_unittests",
115 "type": "console_test_launcher",
116 },
117 "webrtc_nonparallel_tests": {
118 "label": "//webrtc:webrtc_nonparallel_tests",
ehmaldonadob2fcf6d2016-11-15 12:20:30 -0800119 "type": "non_parallel_console_test_launcher",
kjellanderbc59b062016-10-26 23:55:24 -0700120 },
ehmaldonadoe55f91c2017-03-22 05:40:14 -0700121 "webrtc_perf_tests": {
122 "label": "//webrtc:webrtc_perf_tests",
123 "type": "console_test_launcher",
124 },
kjellanderbc59b062016-10-26 23:55:24 -0700125}