| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "type": "console_test_launcher", | 200 "type": "console_test_launcher", |
| 201 }, | 201 }, |
| 202 "chromedriver_unittests": { | 202 "chromedriver_unittests": { |
| 203 "label": "//chrome/test/chromedriver:chromedriver_unittests", | 203 "label": "//chrome/test/chromedriver:chromedriver_unittests", |
| 204 "type": "windowed_test_launcher", | 204 "type": "windowed_test_launcher", |
| 205 }, | 205 }, |
| 206 "chromeos_unittests": { | 206 "chromeos_unittests": { |
| 207 "label": "//chromeos:chromeos_unittests", | 207 "label": "//chromeos:chromeos_unittests", |
| 208 "type": "console_test_launcher", | 208 "type": "console_test_launcher", |
| 209 }, | 209 }, |
| 210 "clipboard_service_unittests": { |
| 211 "label": "//components/clipboard:clipboard_service_unittests", |
| 212 "type": "console_test_launcher", |
| 213 }, |
| 210 "components_browsertests": { | 214 "components_browsertests": { |
| 211 "label": "//components:components_browsertests", | 215 "label": "//components:components_browsertests", |
| 212 "type": "windowed_test_launcher", | 216 "type": "windowed_test_launcher", |
| 213 }, | 217 }, |
| 214 "components_unittests": { | 218 "components_unittests": { |
| 215 "label": "//components:components_unittests", | 219 "label": "//components:components_unittests", |
| 216 "type": "windowed_test_launcher", | 220 "type": "windowed_test_launcher", |
| 217 }, | 221 }, |
| 218 "compositor_unittests": { | 222 "compositor_unittests": { |
| 219 "label": "//ui/compositor:compositor_unittests", | 223 "label": "//ui/compositor:compositor_unittests", |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 }, | 597 }, |
| 594 "wm_unittests": { | 598 "wm_unittests": { |
| 595 "label": "//ui/wm:wm_unittests", | 599 "label": "//ui/wm:wm_unittests", |
| 596 "type": "windowed_test_launcher", | 600 "type": "windowed_test_launcher", |
| 597 }, | 601 }, |
| 598 "wtf_unittests": { | 602 "wtf_unittests": { |
| 599 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 603 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 600 "type": "console_test_launcher", | 604 "type": "console_test_launcher", |
| 601 }, | 605 }, |
| 602 } | 606 } |
| OLD | NEW |