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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 "type": "console_test_launcher", | 454 "type": "console_test_launcher", |
455 }, | 455 }, |
456 "printing_unittests": { | 456 "printing_unittests": { |
457 "label": "//printing:printing_unittests", | 457 "label": "//printing:printing_unittests", |
458 "type": "console_test_launcher", | 458 "type": "console_test_launcher", |
459 }, | 459 }, |
460 "remoting_unittests": { | 460 "remoting_unittests": { |
461 "label": "//remoting:remoting_unittests", | 461 "label": "//remoting:remoting_unittests", |
462 "type": "console_test_launcher", | 462 "type": "console_test_launcher", |
463 }, | 463 }, |
464 "resource_provider_unittests": { | |
465 "label": "//components/resource_provider:resource_provider_unittests", | |
466 "type": "unknown", | |
467 }, | |
468 "sandbox_linux_unittests": { | 464 "sandbox_linux_unittests": { |
469 "label": "//sandbox/linux:sandbox_linux_unittests", | 465 "label": "//sandbox/linux:sandbox_linux_unittests", |
470 "type": "raw", | 466 "type": "raw", |
471 "args": [], | 467 "args": [], |
472 }, | 468 }, |
473 "sandbox_mac_unittests": { | 469 "sandbox_mac_unittests": { |
474 "label": "//sandbox/mac:sandbox_mac_unittests", | 470 "label": "//sandbox/mac:sandbox_mac_unittests", |
475 "type": "unknown", | 471 "type": "unknown", |
476 }, | 472 }, |
477 "sbox_integration_tests": { | 473 "sbox_integration_tests": { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 }, | 589 }, |
594 "wm_unittests": { | 590 "wm_unittests": { |
595 "label": "//ui/wm:wm_unittests", | 591 "label": "//ui/wm:wm_unittests", |
596 "type": "windowed_test_launcher", | 592 "type": "windowed_test_launcher", |
597 }, | 593 }, |
598 "wtf_unittests": { | 594 "wtf_unittests": { |
599 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 595 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
600 "type": "console_test_launcher", | 596 "type": "console_test_launcher", |
601 }, | 597 }, |
602 } | 598 } |
OLD | NEW |