1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# Copyright (c) 2022 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
# gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and
# test type classifications for the tests that are run on the bots.
#
# This file is based on testing/buildbot/gn_isolate_map.pyl for Chromium, but
# is covering WebRTC stand-alone tests instead.
# See https://cs.chromium.org/chromium/src/testing/buildbot/gn_isolate_map.pyl
# for more detailed documentation.
{
"All": {
"label": "//:All",
"type": "additional_compile_target",
},
"AppRTCMobile_test_apk": {
"label": "//examples:AppRTCMobile_test_apk",
"type": "console_test_launcher",
},
"android_junit_tests": {
"label": "//:android_junit_tests",
"type": "raw",
},
"android_examples_junit_tests": {
"label": "//examples:android_examples_junit_tests",
"type": "raw",
},
"android_sdk_junit_tests": {
"label": "//sdk/android:android_sdk_junit_tests",
"type": "raw",
},
"apprtcmobile_tests": {
"label": "//examples:apprtcmobile_tests",
"type": "console_test_launcher",
},
"audio_decoder_unittests": {
"label": "//modules/audio_coding:audio_decoder_unittests",
"type": "console_test_launcher",
},
"common_audio_unittests": {
"label": "//common_audio:common_audio_unittests",
"type": "console_test_launcher",
},
"common_video_unittests": {
"label": "//common_video:common_video_unittests",
"type": "console_test_launcher",
},
"dcsctp_unittests": {
"label": "//net/dcsctp:dcsctp_unittests",
"type": "console_test_launcher",
},
"default": {
"label": "//:default",
"type": "additional_compile_target",
},
"android_instrumentation_test_apk": {
"label": "//sdk/android:android_instrumentation_test_apk",
"type": "console_test_launcher",
},
"modules_tests": {
"label": "//modules:modules_tests",
"type": "console_test_launcher",
},
"modules_unittests": {
"label": "//modules:modules_unittests",
"type": "windowed_test_launcher",
},
"peerconnection_unittests": {
"label": "//pc:peerconnection_unittests",
"type": "console_test_launcher",
},
"shared_screencast_stream_test": {
"label": "//modules/desktop_capture:shared_screencast_stream_test",
"type": "console_test_launcher",
"use_pipewire": True,
},
"rtc_media_unittests": {
"label": "//media:rtc_media_unittests",
"type": "console_test_launcher",
},
"rtc_p2p_unittests": {
"label": "//:rtc_p2p_unittests",
"type": "console_test_launcher",
},
"rtc_pc_unittests": {
"label": "//pc:rtc_pc_unittests",
"type": "console_test_launcher",
},
"rtc_stats_unittests": {
"label": "//stats:rtc_stats_unittests",
"type": "console_test_launcher",
},
"rtc_unittests": {
"label": "//:rtc_unittests",
"type": "console_test_launcher",
},
"sdk_framework_unittests": {
"label": "//sdk:sdk_framework_unittests",
"type": "console_test_launcher",
},
"sdk_unittests": {
"label": "//sdk:sdk_unittests",
"type": "console_test_launcher",
},
"slow_peer_connection_unittests": {
"label": "//pc:slow_peer_connection_unittests",
"type": "console_test_launcher",
},
"svc_tests": {
"label": "//pc:svc_tests",
"type": "console_test_launcher",
},
"system_wrappers_unittests": {
"label": "//system_wrappers:system_wrappers_unittests",
"type": "console_test_launcher",
},
"test_support_unittests": {
"label": "//test:test_support_unittests",
"type": "console_test_launcher",
},
"tools_unittests": {
"label": "//rtc_tools:tools_unittests",
"type": "console_test_launcher",
},
"video_capture_tests": {
"label": "//modules/video_capture:video_capture_tests",
"type": "console_test_launcher",
},
"video_codec_perf_tests": {
"label": "//modules/video_coding:video_codec_perf_tests",
"type": "raw",
},
"video_engine_tests": {
"label": "//:video_engine_tests",
"type": "console_test_launcher",
},
"voip_unittests": {
"label": "//:voip_unittests",
"type": "console_test_launcher",
},
"webrtc_nonparallel_tests": {
"label": "//:webrtc_nonparallel_tests",
"type": "non_parallel_console_test_launcher",
},
"webrtc_perf_tests": {
"label": "//:webrtc_perf_tests",
"type": "raw",
},
}
|