| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "chrome_elf_unittests": { | 182 "chrome_elf_unittests": { |
| 183 "label": "//chrome_elf:chrome_elf_unittests", | 183 "label": "//chrome_elf:chrome_elf_unittests", |
| 184 "type": "raw", | 184 "type": "raw", |
| 185 }, | 185 }, |
| 186 "chromedriver_unittests": { | 186 "chromedriver_unittests": { |
| 187 "label": "//chrome/test/chromedriver:chromedriver_unittests", | 187 "label": "//chrome/test/chromedriver:chromedriver_unittests", |
| 188 "type": "windowed_test_launcher", | 188 "type": "windowed_test_launcher", |
| 189 }, | 189 }, |
| 190 "chromeos_unittests": { | 190 "chromeos_unittests": { |
| 191 "label": "//chromeos:chromeos_unittests", | 191 "label": "//chromeos:chromeos_unittests", |
| 192 "type": "unknown", | 192 "type": "console_test_launcher", |
| 193 }, | 193 }, |
| 194 "components_browsertests": { | 194 "components_browsertests": { |
| 195 "label": "//components:components_browsertests", | 195 "label": "//components:components_browsertests", |
| 196 "type": "windowed_test_launcher", | 196 "type": "windowed_test_launcher", |
| 197 }, | 197 }, |
| 198 "components_unittests": { | 198 "components_unittests": { |
| 199 "label": "//components:components_unittests", | 199 "label": "//components:components_unittests", |
| 200 "type": "windowed_test_launcher", | 200 "type": "windowed_test_launcher", |
| 201 }, | 201 }, |
| 202 "compositor_unittests": { | 202 "compositor_unittests": { |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 }, | 562 }, |
| 563 "wm_unittests": { | 563 "wm_unittests": { |
| 564 "label": "//ui/wm:wm_unittests", | 564 "label": "//ui/wm:wm_unittests", |
| 565 "type": "windowed_test_launcher", | 565 "type": "windowed_test_launcher", |
| 566 }, | 566 }, |
| 567 "wtf_unittests": { | 567 "wtf_unittests": { |
| 568 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 568 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 569 "type": "console_test_launcher", | 569 "type": "console_test_launcher", |
| 570 }, | 570 }, |
| 571 } | 571 } |
| OLD | NEW |