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

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

Issue 1248673005: Add GN isolate support for a bunch of unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@some_isolates
Patch Set: merge to HEAD Created 5 years, 5 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
« no previous file with comments | « sql/BUILD.gn ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14 matching lines...) Expand all
25 # : the test is a standalone executable; it may take an optional list of 25 # : the test is a standalone executable; it may take an optional list of
26 # command line arguments in the 'args' field, but otherwise needs no 26 # command line arguments in the 'args' field, but otherwise needs no
27 # extra files or special handling. 27 # extra files or special handling.
28 # "unknown" 28 # "unknown"
29 # : (the default), which indicates that we don't know what the command line 29 # : (the default), which indicates that we don't know what the command line
30 # needs to be (this is a fatal error). 30 # needs to be (this is a fatal error).
31 31
32 { 32 {
33 "accessibility_unittests": { 33 "accessibility_unittests": {
34 "label": "//ui/accessibility:accessibility_unittests", 34 "label": "//ui/accessibility:accessibility_unittests",
35 "type": "unknown", 35 "type": "raw",
36 "args": [],
36 }, 37 },
37 "angle_unittests": { 38 "angle_unittests": {
38 "label": "//gpu:angle_unittests", 39 "label": "//gpu:angle_unittests",
39 "type": "unknown", 40 "type": "raw",
41 "args": [],
40 }, 42 },
41 "app_list_unittests": { 43 "app_list_unittests": {
42 "label": "//ui/app_list:app_list_unittests", 44 "label": "//ui/app_list:app_list_unittests",
43 "type": "unknown", 45 "type": "unknown",
44 }, 46 },
45 "app_shell_unittests": { 47 "app_shell_unittests": {
46 "label": "//extensions/shell:app_shell_unittests", 48 "label": "//extensions/shell:app_shell_unittests",
47 "type": "unknown", 49 "type": "unknown",
48 }, 50 },
49 "ash_unittests": { 51 "ash_unittests": {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 "cast_shell_unittests": { 90 "cast_shell_unittests": {
89 "label": "//chromecast/app:cast_shell_unittests", 91 "label": "//chromecast/app:cast_shell_unittests",
90 "type": "unknown", 92 "type": "unknown",
91 }, 93 },
92 "cast_unittests": { 94 "cast_unittests": {
93 "label": "//cast:cast_unittests", 95 "label": "//cast:cast_unittests",
94 "type": "unknown", 96 "type": "unknown",
95 }, 97 },
96 "cc_unittests": { 98 "cc_unittests": {
97 "label": "//cc:cc_unittests", 99 "label": "//cc:cc_unittests",
98 "type": "unknown", 100 "type": "windowed_test_launcher",
99 }, 101 },
100 "chrome_elf_unittests": { 102 "chrome_elf_unittests": {
101 "label": "//chrome_elf:chrome_elf_unittests", 103 "label": "//chrome_elf:chrome_elf_unittests",
102 "type": "unknown", 104 "type": "unknown",
103 }, 105 },
104 "chromedriver_unittests": { 106 "chromedriver_unittests": {
105 "label": "//chrome/test/chromedriver:chromedriver_unittests", 107 "label": "//chrome/test/chromedriver:chromedriver_unittests",
106 "type": "unknown", 108 "type": "unknown",
107 }, 109 },
108 "chromeos_unittests": { 110 "chromeos_unittests": {
109 "label": "//chromeos:chromeos_unittests", 111 "label": "//chromeos:chromeos_unittests",
110 "type": "unknown", 112 "type": "unknown",
111 }, 113 },
112 "components_browsertests": { 114 "components_browsertests": {
113 "label": "//components:components_browsertests", 115 "label": "//components:components_browsertests",
114 "type": "unknown", 116 "type": "unknown",
115 }, 117 },
116 "components_unittests": { 118 "components_unittests": {
117 "label": "//components:components_unittests", 119 "label": "//components:components_unittests",
118 "type": "unknown", 120 "type": "unknown",
119 }, 121 },
120 "compositor_unittests": { 122 "compositor_unittests": {
121 "label": "//ui/compositor:compositor_unittests", 123 "label": "//ui/compositor:compositor_unittests",
122 "type": "unknown", 124 "type": "windowed_test_launcher",
123 }, 125 },
124 "content_browsertests": { 126 "content_browsertests": {
125 "label": "//content/test:content_browsertests", 127 "label": "//content/test:content_browsertests",
126 "type": "unknown", 128 "type": "unknown",
127 }, 129 },
128 "content_unittests": { 130 "content_unittests": {
129 "label": "//content/test:content_unittests", 131 "label": "//content/test:content_unittests",
130 "type": "unknown", 132 "type": "unknown",
131 }, 133 },
132 "courgette_unittests": { 134 "courgette_unittests": {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "gcm_unit_tests": { 166 "gcm_unit_tests": {
165 "label": "//google_apis/gcm:gcm_unit_tests", 167 "label": "//google_apis/gcm:gcm_unit_tests",
166 "type": "unknown", 168 "type": "unknown",
167 }, 169 },
168 "gfx_unittests": { 170 "gfx_unittests": {
169 "label": "//ui/gfx:gfx_unittests", 171 "label": "//ui/gfx:gfx_unittests",
170 "type": "unknown", 172 "type": "unknown",
171 }, 173 },
172 "gl_unittests": { 174 "gl_unittests": {
173 "label": "//ui/gl:gl_unittests", 175 "label": "//ui/gl:gl_unittests",
174 "type": "unknown", 176 "type": "raw",
177 "args": [],
175 }, 178 },
176 "gn_unittests": { 179 "gn_unittests": {
177 "label": "//tools/gn:gn_unittests", 180 "label": "//tools/gn:gn_unittests",
178 "type": "unknown", 181 "type": "raw",
182 "args": [],
179 }, 183 },
180 "google_apis_unittests": { 184 "google_apis_unittests": {
181 "label": "//google_apis:google_apis_unittests", 185 "label": "//google_apis:google_apis_unittests",
182 "type": "unknown", 186 "type": "unknown",
183 }, 187 },
184 "gpu_unittests": { 188 "gpu_unittests": {
185 "label": "//gpu:gpu_unittests", 189 "label": "//gpu:gpu_unittests",
186 "type": "unknown", 190 "type": "unknown",
187 }, 191 },
188 "html_viewer_unittests": { 192 "html_viewer_unittests": {
189 "label": "//components/html_viewer:html_viewer_unittests", 193 "label": "//components/html_viewer:html_viewer_unittests",
190 "type": "unknown", 194 "type": "unknown",
191 }, 195 },
192 "installer_util_unittests": { 196 "installer_util_unittests": {
193 "label": "//chrome/installer/util:installer_util_unittests", 197 "label": "//chrome/installer/util:installer_util_unittests",
194 "type": "unknown", 198 "type": "unknown",
195 }, 199 },
196 "interactive_ui_tests": { 200 "interactive_ui_tests": {
197 "label": "//chrome/test:interactive_ui_tests", 201 "label": "//chrome/test:interactive_ui_tests",
198 "type": "unknown", 202 "type": "unknown",
199 }, 203 },
200 "ipc_mojo_unittests": { 204 "ipc_mojo_unittests": {
201 "label": "//ipc/mojo:ipc_mojo_unittests", 205 "label": "//ipc/mojo:ipc_mojo_unittests",
202 "type": "unknown", 206 "type": "unknown",
203 }, 207 },
204 "ipc_tests": { 208 "ipc_tests": {
205 "label": "//ipc:ipc_tests", 209 "label": "//ipc:ipc_tests",
206 "type": "unknown", 210 "type": "console_test_launcher",
207 }, 211 },
208 "jingle_unittests": { 212 "jingle_unittests": {
209 "label": "//jingle:jingle_unittests", 213 "label": "//jingle:jingle_unittests",
210 "type": "unknown", 214 "type": "unknown",
211 }, 215 },
212 "keyboard_unittests": { 216 "keyboard_unittests": {
213 "label": "//ui/keyboard:keyboard_unittests", 217 "label": "//ui/keyboard:keyboard_unittests",
214 "type": "unknown", 218 "type": "unknown",
215 }, 219 },
216 "media_unittests": { 220 "media_unittests": {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 "remoting_unittests": { 296 "remoting_unittests": {
293 "label": "//remoting:remoting_unittests", 297 "label": "//remoting:remoting_unittests",
294 "type": "unknown", 298 "type": "unknown",
295 }, 299 },
296 "resource_provider_unittests": { 300 "resource_provider_unittests": {
297 "label": "//components/resource_provider:resource_provider_unittests", 301 "label": "//components/resource_provider:resource_provider_unittests",
298 "type": "unknown", 302 "type": "unknown",
299 }, 303 },
300 "sandbox_linux_unittests": { 304 "sandbox_linux_unittests": {
301 "label": "//sandbox/linux:sandbox_linux_unittests", 305 "label": "//sandbox/linux:sandbox_linux_unittests",
302 "type": "unknown", 306 "type": "raw",
307 "args": [],
303 }, 308 },
304 "sandbox_mac_unittests": { 309 "sandbox_mac_unittests": {
305 "label": "//sandbox/mac:sandbox_mac_unittests", 310 "label": "//sandbox/mac:sandbox_mac_unittests",
306 "type": "unknown", 311 "type": "unknown",
307 }, 312 },
308 "sbox_integration_tests": { 313 "sbox_integration_tests": {
309 "label": "//sandbox/win:sbox_integration_tests", 314 "label": "//sandbox/win:sbox_integration_tests",
310 "type": "unknown", 315 "type": "unknown",
311 }, 316 },
312 "sbox_unittests": { 317 "sbox_unittests": {
313 "label": "//sandbox/win:sbox_unittests", 318 "label": "//sandbox/win:sbox_unittests",
314 "type": "unknown", 319 "type": "unknown",
315 }, 320 },
316 "sbox_validation_tests": { 321 "sbox_validation_tests": {
317 "label": "//sandbox/win:sbox_validation_tests", 322 "label": "//sandbox/win:sbox_validation_tests",
318 "type": "unknown", 323 "type": "unknown",
319 }, 324 },
320 "setup_unittests": { 325 "setup_unittests": {
321 "label": "//chrome/installer/setup:setup_unittests", 326 "label": "//chrome/installer/setup:setup_unittests",
322 "type": "unknown", 327 "type": "unknown",
323 }, 328 },
324 "skia_unittests": { 329 "skia_unittests": {
325 "label": "//skia:skia_unittests", 330 "label": "//skia:skia_unittests",
326 "type": "unknown", 331 "type": "console_test_launcher",
327 }, 332 },
328 "sql_unittests": { 333 "sql_unittests": {
329 "label": "//sql:sql_unittests", 334 "label": "//sql:sql_unittests",
330 "type": "unknown", 335 "type": "console_test_launcher",
331 }, 336 },
332 "sync_integration_tests": { 337 "sync_integration_tests": {
333 "label": "//sync:sync_integration_tests", 338 "label": "//sync:sync_integration_tests",
334 "type": "unknown", 339 "type": "unknown",
335 }, 340 },
336 "sync_unit_tests": { 341 "sync_unit_tests": {
337 "label": "//sync:sync_unit_tests", 342 "label": "//sync:sync_unit_tests",
338 "type": "unknown", 343 "type": "unknown",
339 }, 344 },
340 "ui_base_unittests": { 345 "ui_base_unittests": {
341 "label": "//ui/base:ui_base_unittests", 346 "label": "//ui/base:ui_base_unittests",
342 "type": "windowed_test_launcher", 347 "type": "windowed_test_launcher",
343 }, 348 },
344 "ui_chromeos_unittests": { 349 "ui_chromeos_unittests": {
345 "label": "//ui/chromeos:ui_chromeos_unittests", 350 "label": "//ui/chromeos:ui_chromeos_unittests",
346 "type": "unknown", 351 "type": "unknown",
347 }, 352 },
348 "ui_touch_selection_unittests": { 353 "ui_touch_selection_unittests": {
349 "label": "//ui/touch_selection:ui_touch_selection_unittests", 354 "label": "//ui/touch_selection:ui_touch_selection_unittests",
350 "type": "unknown", 355 "type": "unknown",
351 }, 356 },
352 "unit_tests": { 357 "unit_tests": {
353 "label": "//chrome/test:unit_tests", 358 "label": "//chrome/test:unit_tests",
354 "type": "unknown", 359 "type": "unknown",
355 }, 360 },
356 "url_unittests": { 361 "url_unittests": {
357 "label": "//url:url_unittests", 362 "label": "//url:url_unittests",
358 "type": "unknown", 363 "type": "console_test_launcher",
359 }, 364 },
360 "view_manager_unittests": { 365 "view_manager_unittests": {
361 "label": "//components/view_manager:view_manager_unittests", 366 "label": "//components/view_manager:view_manager_unittests",
362 "type": "unknown", 367 "type": "unknown",
363 }, 368 },
364 "views_unittests": { 369 "views_unittests": {
365 "label": "//ui/views:views_unittests", 370 "label": "//ui/views:views_unittests",
366 "type": "unknown", 371 "type": "unknown",
367 }, 372 },
368 "webkit_unit_tests": { 373 "webkit_unit_tests": {
369 "label": "//third_party/WebKit/public:webkit_unit_tests", 374 "label": "//third_party/WebKit/public:webkit_unit_tests",
370 "type": "unknown", 375 "type": "unknown",
371 }, 376 },
372 "wm_unittests": { 377 "wm_unittests": {
373 "label": "//ui/wm:wm_unittests", 378 "label": "//ui/wm:wm_unittests",
374 "type": "unknown", 379 "type": "unknown",
375 }, 380 },
376 "wtf_unittests": { 381 "wtf_unittests": {
377 "label": "//third_party/WebKit/public:wtf_unittests", 382 "label": "//third_party/WebKit/public:wtf_unittests",
378 "type": "unknown", 383 "type": "unknown",
379 }, 384 },
380 } 385 }
OLDNEW
« no previous file with comments | « sql/BUILD.gn ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698