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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 "type": "windowed_test_launcher", | 493 "type": "windowed_test_launcher", |
494 }, | 494 }, |
495 "mash_unittests": { | 495 "mash_unittests": { |
496 "label": "//mash:mash_unittests", | 496 "label": "//mash:mash_unittests", |
497 "type": "windowed_test_launcher", | 497 "type": "windowed_test_launcher", |
498 }, | 498 }, |
499 "mus_gpu_unittests": { | 499 "mus_gpu_unittests": { |
500 "label": "//services/ui/gpu:mus_gpu_unittests", | 500 "label": "//services/ui/gpu:mus_gpu_unittests", |
501 "type": "console_test_launcher", | 501 "type": "console_test_launcher", |
502 }, | 502 }, |
| 503 "mus_demo_unittests": { |
| 504 "label": "//services/ui/demo:mus_demo_unittests", |
| 505 "type": "windowed_test_launcher", |
| 506 }, |
503 "mus_ws_unittests": { | 507 "mus_ws_unittests": { |
504 "label": "//services/ui/ws:mus_ws_unittests", | 508 "label": "//services/ui/ws:mus_ws_unittests", |
505 "type": "windowed_test_launcher", | 509 "type": "windowed_test_launcher", |
506 }, | 510 }, |
507 "nacl_helper_nonsfi_unittests": { | 511 "nacl_helper_nonsfi_unittests": { |
508 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests", | 512 "label": "//components/nacl/loader:nacl_helper_nonsfi_unittests", |
509 "type": "raw", | 513 "type": "raw", |
510 "args": [], | 514 "args": [], |
511 }, | 515 }, |
512 "nacl_loader_unittests": { | 516 "nacl_loader_unittests": { |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
733 }, | 737 }, |
734 "wtf_unittests": { | 738 "wtf_unittests": { |
735 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 739 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
736 "type": "console_test_launcher", | 740 "type": "console_test_launcher", |
737 }, | 741 }, |
738 "xmllite_xmpp_unittests": { | 742 "xmllite_xmpp_unittests": { |
739 "label": "//webrtc:xmllite_xmpp_unittests", | 743 "label": "//webrtc:xmllite_xmpp_unittests", |
740 "type": "console_test_launcher", | 744 "type": "console_test_launcher", |
741 } | 745 } |
742 } | 746 } |
OLD | NEW |