Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: webrtc/build/gn_isolate_map.pyl

Issue 2454963002: Add gn_isolate_map.pyl file for WebRTC stand-alone tests (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 "android_junit_tests": {
27 "label": "//webrtc:android_junit_tests",
28 "type": "junit_test",
29 },
30 "audio_decoder_unittests": {
31 "label": "//webrtc/modules/audio_coding:audio_decoder_unittests",
32 "type": "console_test_launcher",
33 },
34 "common_audio_unittests": {
35 "label": "//webrtc/common_audio:common_audio_unittests",
36 "type": "console_test_launcher",
37 },
38 "common_video_unittests": {
39 "label": "//webrtc/common_video:common_video_unittests",
40 "type": "console_test_launcher",
41 },
42 "libjingle_peerconnection_android_unittest": {
43 "label": "//webrtc/api:libjingle_peerconnection_android_unittest",
44 "type": "additional_compile_target",
45 },
46 "modules_tests": {
47 "label": "//webrtc/modules:modules_tests",
48 "type": "console_test_launcher",
49 },
50 "modules_unittests": {
51 "label": "//webrtc/modules:modules_unittests",
52 "type": "windowed_test_launcher",
53 },
54 "peerconnection_unittests": {
55 "label": "//webrtc/api:peerconnection_unittests",
56 "type": "console_test_launcher",
57 },
58 "rtc_media_unittests": {
59 "label": "//webrtc/media:rtc_media_unittests",
60 "type": "console_test_launcher",
61 },
62 "rtc_pc_unittests": {
63 "label": "//webrtc/pc:rtc_pc_unittests",
64 "type": "console_test_launcher",
65 },
66 "rtc_stats_unittests": {
67 "label": "//webrtc/stats:rtc_stats_unittests",
68 "type": "console_test_launcher",
69 },
70 "rtc_unittests": {
71 "label": "//webrtc:rtc_unittests",
72 "type": "console_test_launcher",
73 },
74 "system_wrappers_unittests": {
75 "label": "//webrtc/system_wrappers:system_wrappers_unittests",
76 "type": "console_test_launcher",
77 },
78 "test_support_unittests": {
79 "label": "//webrtc/test:test_support_unittests",
80 "type": "console_test_launcher",
81 },
82 "tools_unittests": {
83 "label": "//webrtc/tools:tools_unittests",
84 "type": "console_test_launcher",
85 },
86 "video_engine_tests": {
87 "label": "//webrtc:video_engine_tests",
88 "type": "console_test_launcher",
89 },
90 "voice_engine_unittests": {
91 "label": "//webrtc/voice_engine:voice_engine_unittests",
92 "type": "console_test_launcher",
93 },
94 "webrtc_nonparallel_tests": {
95 "label": "//webrtc:webrtc_nonparallel_tests",
96 "type": "console_test_launcher",
97 },
98 "xmllite_xmpp_unittests": {
99 "label": "//webrtc:xmllite_xmpp_unittests",
100 "type": "console_test_launcher",
101 }
102 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698