OLD | NEW |
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 "type": "console_test_launcher", | 339 "type": "console_test_launcher", |
340 }, | 340 }, |
341 "install_static_unittests": { | 341 "install_static_unittests": { |
342 "label": "//chrome/install_static:install_static_unittests", | 342 "label": "//chrome/install_static:install_static_unittests", |
343 "type": "console_test_launcher", | 343 "type": "console_test_launcher", |
344 }, | 344 }, |
345 "interactive_ui_tests": { | 345 "interactive_ui_tests": { |
346 "label": "//chrome/test:interactive_ui_tests", | 346 "label": "//chrome/test:interactive_ui_tests", |
347 "type": "windowed_test_launcher", | 347 "type": "windowed_test_launcher", |
348 }, | 348 }, |
349 "ipc_mojo_unittests": { | |
350 "label": "//ipc/mojo:ipc_mojo_unittests", | |
351 "type": "console_test_launcher", | |
352 }, | |
353 "ipc_tests": { | 349 "ipc_tests": { |
354 "label": "//ipc:ipc_tests", | 350 "label": "//ipc:ipc_tests", |
355 "type": "console_test_launcher", | 351 "type": "console_test_launcher", |
356 }, | 352 }, |
357 "jingle_unittests": { | 353 "jingle_unittests": { |
358 "label": "//jingle:jingle_unittests", | 354 "label": "//jingle:jingle_unittests", |
359 "type": "console_test_launcher", | 355 "type": "console_test_launcher", |
360 }, | 356 }, |
361 "keyboard_unittests": { | 357 "keyboard_unittests": { |
362 "label": "//ui/keyboard:keyboard_unittests", | 358 "label": "//ui/keyboard:keyboard_unittests", |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 }, | 624 }, |
629 "wm_unittests": { | 625 "wm_unittests": { |
630 "label": "//ui/wm:wm_unittests", | 626 "label": "//ui/wm:wm_unittests", |
631 "type": "windowed_test_launcher", | 627 "type": "windowed_test_launcher", |
632 }, | 628 }, |
633 "wtf_unittests": { | 629 "wtf_unittests": { |
634 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 630 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
635 "type": "console_test_launcher", | 631 "type": "console_test_launcher", |
636 }, | 632 }, |
637 } | 633 } |
OLD | NEW |