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

Side by Side Diff: testing/buildbot/gn_isolate_map.pyl

Issue 1925013002: 👔 Make instrumentation tests declare their runtime_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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
OLDNEW
1 ## Copyright 2015 The Chromium Authors. All rights reserved. 1 ## Copyright 2015 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 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and 5 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and
6 # test type classifications for the tests that are run on the bots. 6 # test type classifications for the tests that are run on the bots.
7 # 7 #
8 # This mapping is used by MB so that we can uniformly refer to test binaries 8 # This mapping is used by MB so that we can uniformly refer to test binaries
9 # by their Ninja target names in the recipes and not need to worry about how 9 # by their Ninja target names in the recipes and not need to worry about how
10 # they are referred to in GN or GYP specifically (the GYP target name is pretty 10 # they are referred to in GN or GYP specifically (the GYP target name is pretty
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 # "//testing/scripts/foo.py". 61 # "//testing/scripts/foo.py".
62 62
63 { 63 {
64 "accessibility_unittests": { 64 "accessibility_unittests": {
65 "label": "//ui/accessibility:accessibility_unittests", 65 "label": "//ui/accessibility:accessibility_unittests",
66 "type": "raw", 66 "type": "raw",
67 "args": [], 67 "args": [],
68 }, 68 },
69 "android_webview_test": { 69 "android_webview_test": {
70 "label": "//android_webview/test:android_webview_test_apk", 70 "label": "//android_webview/test:android_webview_test_apk",
71 "type": "console_test_launcher", 71 "type": "android_instrumentation",
72 }, 72 },
73 "android_webview_unittests": { 73 "android_webview_unittests": {
74 "label": "//android_webview/test:android_webview_unittests", 74 "label": "//android_webview/test:android_webview_unittests",
75 "type": "console_test_launcher", 75 "type": "console_test_launcher",
76 }, 76 },
77 "angle_deqp_egl_tests": { 77 "angle_deqp_egl_tests": {
78 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests", 78 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests",
79 "type": "raw", 79 "type": "raw",
80 "args": [], 80 "args": [],
81 }, 81 },
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 "base_unittests": { 127 "base_unittests": {
128 "label": "//base:base_unittests", 128 "label": "//base:base_unittests",
129 "type": "console_test_launcher", 129 "type": "console_test_launcher",
130 }, 130 },
131 "battor_agent_unittests": { 131 "battor_agent_unittests": {
132 "label": "//tools/battor_agent:battor_agent_unittests", 132 "label": "//tools/battor_agent:battor_agent_unittests",
133 "type": "console_test_launcher", 133 "type": "console_test_launcher",
134 }, 134 },
135 "blimp_test": { 135 "blimp_test": {
136 "label": "//blimp/client:blimp_test_apk", 136 "label": "//blimp/client:blimp_test_apk",
137 "type": "console_test_launcher", 137 "type": "android_instrumentation",
138 }, 138 },
139 "blimp_unittests": { 139 "blimp_unittests": {
140 "label": "//blimp:blimp_unittests", 140 "label": "//blimp:blimp_unittests",
141 "type": "console_test_launcher", 141 "type": "console_test_launcher",
142 }, 142 },
143 "blink_heap_unittests": { 143 "blink_heap_unittests": {
144 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", 144 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests",
145 "type": "console_test_launcher", 145 "type": "console_test_launcher",
146 }, 146 },
147 "blink_platform_unittests": { 147 "blink_platform_unittests": {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 "chrome_app_unittests": { 186 "chrome_app_unittests": {
187 "label": "//chrome/test:chrome_app_unittests", 187 "label": "//chrome/test:chrome_app_unittests",
188 "type": "console_test_launcher", 188 "type": "console_test_launcher",
189 }, 189 },
190 "chrome_elf_unittests": { 190 "chrome_elf_unittests": {
191 "label": "//chrome_elf:chrome_elf_unittests", 191 "label": "//chrome_elf:chrome_elf_unittests",
192 "type": "raw", 192 "type": "raw",
193 }, 193 },
194 "chrome_public_test": { 194 "chrome_public_test": {
195 "label": "//chrome/android:chrome_public_test_apk", 195 "label": "//chrome/android:chrome_public_test_apk",
196 "type": "console_test_launcher", 196 "type": "android_instrumentation",
197 }, 197 },
198 "chrome_sync_shell_test": { 198 "chrome_sync_shell_test": {
199 "label": "//chrome/android:chrome_sync_shell_test_apk", 199 "label": "//chrome/android:chrome_sync_shell_test_apk",
200 "type": "console_test_launcher", 200 "type": "android_instrumentation",
201 }, 201 },
202 "chromedriver_unittests": { 202 "chromedriver_unittests": {
203 "label": "//chrome/test/chromedriver:chromedriver_unittests", 203 "label": "//chrome/test/chromedriver:chromedriver_unittests",
204 "type": "windowed_test_launcher", 204 "type": "windowed_test_launcher",
205 }, 205 },
206 "chromeos_unittests": { 206 "chromeos_unittests": {
207 "label": "//chromeos:chromeos_unittests", 207 "label": "//chromeos:chromeos_unittests",
208 "type": "console_test_launcher", 208 "type": "console_test_launcher",
209 }, 209 },
210 "components_browsertests": { 210 "components_browsertests": {
(...skipping 14 matching lines...) Expand all
225 }, 225 },
226 "content_site_isolation_browsertests": { 226 "content_site_isolation_browsertests": {
227 "label": "//content/test:content_site_isolation_browsertests", 227 "label": "//content/test:content_site_isolation_browsertests",
228 "label_type": "group", 228 "label_type": "group",
229 "type": "windowed_test_launcher", 229 "type": "windowed_test_launcher",
230 "executable": "content_browsertests", 230 "executable": "content_browsertests",
231 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/bu ildbot/filters/site-per-process.content_browsertests.filter"], 231 "args": ["--site-per-process", "--test-launcher-filter-file=../../testing/bu ildbot/filters/site-per-process.content_browsertests.filter"],
232 }, 232 },
233 "content_shell_test": { 233 "content_shell_test": {
234 "label": "//content/shell/android:content_shell_test_apk", 234 "label": "//content/shell/android:content_shell_test_apk",
235 "type": "console_test_launcher", 235 "type": "android_instrumentation",
236 }, 236 },
237 "content_unittests": { 237 "content_unittests": {
238 "label": "//content/test:content_unittests", 238 "label": "//content/test:content_unittests",
239 "type": "windowed_test_launcher", 239 "type": "windowed_test_launcher",
240 }, 240 },
241 "courgette_unittests": { 241 "courgette_unittests": {
242 "label": "//courgette:courgette_unittests", 242 "label": "//courgette:courgette_unittests",
243 "type": "console_test_launcher", 243 "type": "console_test_launcher",
244 }, 244 },
245 "crypto_unittests": { 245 "crypto_unittests": {
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 }, 585 },
586 "wm_unittests": { 586 "wm_unittests": {
587 "label": "//ui/wm:wm_unittests", 587 "label": "//ui/wm:wm_unittests",
588 "type": "windowed_test_launcher", 588 "type": "windowed_test_launcher",
589 }, 589 },
590 "wtf_unittests": { 590 "wtf_unittests": {
591 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 591 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
592 "type": "console_test_launcher", 592 "type": "console_test_launcher",
593 }, 593 },
594 } 594 }
OLDNEW
« no previous file with comments | « content/content_shell_test_data.isolate ('k') | tools/mb/mb.py » ('j') | tools/mb/mb.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698