| 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 }, |
| 465 "gn_unittests": { | 469 "gn_unittests": { |
| 466 "label": "//tools/gn:gn_unittests", | 470 "label": "//tools/gn:gn_unittests", |
| 467 "type": "raw", | 471 "type": "raw", |
| 468 "args": [], | 472 "args": [], |
| 469 }, | 473 }, |
| 470 "google_apis_unittests": { | 474 "google_apis_unittests": { |
| 471 "label": "//google_apis:google_apis_unittests", | 475 "label": "//google_apis:google_apis_unittests", |
| 472 "type": "console_test_launcher", | 476 "type": "console_test_launcher", |
| 473 }, | 477 }, |
| 474 "gpu_ipc_service_unittests": { | 478 "gpu_ipc_service_unittests": { |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 }, | 954 }, |
| 951 "wtf_unittests": { | 955 "wtf_unittests": { |
| 952 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 956 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 953 "type": "console_test_launcher", | 957 "type": "console_test_launcher", |
| 954 }, | 958 }, |
| 955 "xmllite_xmpp_unittests": { | 959 "xmllite_xmpp_unittests": { |
| 956 "label": "//webrtc:xmllite_xmpp_unittests", | 960 "label": "//webrtc:xmllite_xmpp_unittests", |
| 957 "type": "console_test_launcher", | 961 "type": "console_test_launcher", |
| 958 } | 962 } |
| 959 } | 963 } |
| OLD | NEW |