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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
455 "gl_tests": { | 455 "gl_tests": { |
456 "label": "//gpu:gl_tests", | 456 "label": "//gpu:gl_tests", |
457 "type": "raw", | 457 "type": "raw", |
458 "args": [], | 458 "args": [], |
459 }, | 459 }, |
460 "gl_unittests": { | 460 "gl_unittests": { |
461 "label": "//ui/gl:gl_unittests", | 461 "label": "//ui/gl:gl_unittests", |
462 "type": "raw", | 462 "type": "raw", |
463 "args": [], | 463 "args": [], |
464 }, | 464 }, |
465 "gn_all": { | |
466 "label": "//:gn_all", | |
467 "type": "additional_compile_target", | |
468 }, | |
469 "gn_unittests": { | 465 "gn_unittests": { |
dnj
2016/09/23 17:37:09
Is this still relevant?
Dirk Pranke
2016/09/23 17:42:02
Assuming you're asking about gn_unittests and not
dnj
2016/09/23 17:54:00
Acknowledged.
| |
470 "label": "//tools/gn:gn_unittests", | 466 "label": "//tools/gn:gn_unittests", |
471 "type": "raw", | 467 "type": "raw", |
472 "args": [], | 468 "args": [], |
473 }, | 469 }, |
474 "google_apis_unittests": { | 470 "google_apis_unittests": { |
475 "label": "//google_apis:google_apis_unittests", | 471 "label": "//google_apis:google_apis_unittests", |
476 "type": "console_test_launcher", | 472 "type": "console_test_launcher", |
477 }, | 473 }, |
478 "gpu_ipc_service_unittests": { | 474 "gpu_ipc_service_unittests": { |
479 "label": "//gpu/ipc/service:gpu_ipc_service_unittests", | 475 "label": "//gpu/ipc/service:gpu_ipc_service_unittests", |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
954 }, | 950 }, |
955 "wtf_unittests": { | 951 "wtf_unittests": { |
956 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 952 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
957 "type": "console_test_launcher", | 953 "type": "console_test_launcher", |
958 }, | 954 }, |
959 "xmllite_xmpp_unittests": { | 955 "xmllite_xmpp_unittests": { |
960 "label": "//webrtc:xmllite_xmpp_unittests", | 956 "label": "//webrtc:xmllite_xmpp_unittests", |
961 "type": "console_test_launcher", | 957 "type": "console_test_launcher", |
962 } | 958 } |
963 } | 959 } |
OLD | NEW |