| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "type": "unknown", | 159 "type": "unknown", |
| 160 }, | 160 }, |
| 161 "cast_unittests": { | 161 "cast_unittests": { |
| 162 "label": "//media/cast:cast_unittests", | 162 "label": "//media/cast:cast_unittests", |
| 163 "type": "windowed_test_launcher", | 163 "type": "windowed_test_launcher", |
| 164 }, | 164 }, |
| 165 "cc_unittests": { | 165 "cc_unittests": { |
| 166 "label": "//cc:cc_unittests", | 166 "label": "//cc:cc_unittests", |
| 167 "type": "windowed_test_launcher", | 167 "type": "windowed_test_launcher", |
| 168 }, | 168 }, |
| 169 # See http://crbug.com/585151 | 169 "chrome_app_unittests": { |
| 170 #"chrome_app_unittests": { | 170 "label": "//chrome/test:chrome_app_unittests", |
| 171 #"label": "//chrome/test:chrome_app_unittests", | 171 "type": "console_test_launcher", |
| 172 #"type": "unknown", | 172 }, |
| 173 #}, | |
| 174 "chrome_elf_unittests": { | 173 "chrome_elf_unittests": { |
| 175 "label": "//chrome_elf:chrome_elf_unittests", | 174 "label": "//chrome_elf:chrome_elf_unittests", |
| 176 "type": "unknown", | 175 "type": "unknown", |
| 177 }, | 176 }, |
| 178 "chromedriver_unittests": { | 177 "chromedriver_unittests": { |
| 179 "label": "//chrome/test/chromedriver:chromedriver_unittests", | 178 "label": "//chrome/test/chromedriver:chromedriver_unittests", |
| 180 "type": "windowed_test_launcher", | 179 "type": "windowed_test_launcher", |
| 181 }, | 180 }, |
| 182 "chromeos_unittests": { | 181 "chromeos_unittests": { |
| 183 "label": "//chromeos:chromeos_unittests", | 182 "label": "//chromeos:chromeos_unittests", |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 }, | 553 }, |
| 555 "wm_unittests": { | 554 "wm_unittests": { |
| 556 "label": "//ui/wm:wm_unittests", | 555 "label": "//ui/wm:wm_unittests", |
| 557 "type": "windowed_test_launcher", | 556 "type": "windowed_test_launcher", |
| 558 }, | 557 }, |
| 559 "wtf_unittests": { | 558 "wtf_unittests": { |
| 560 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 559 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 561 "type": "console_test_launcher", | 560 "type": "console_test_launcher", |
| 562 }, | 561 }, |
| 563 } | 562 } |
| OLD | NEW |