| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 "type": "console_test_launcher", | 232 "type": "console_test_launcher", |
| 233 }, | 233 }, |
| 234 "dbus_unittests": { | 234 "dbus_unittests": { |
| 235 "label": "//dbus:dbus_unittests", | 235 "label": "//dbus:dbus_unittests", |
| 236 "type": "unknown", | 236 "type": "unknown", |
| 237 }, | 237 }, |
| 238 "device_unittests": { | 238 "device_unittests": { |
| 239 "label": "//device:device_unittests", | 239 "label": "//device:device_unittests", |
| 240 "type": "console_test_launcher", | 240 "type": "console_test_launcher", |
| 241 }, | 241 }, |
| 242 "display_compositor_unittests": { | |
| 243 "label": "//components/display_compositor:display_compositor_unittests", | |
| 244 "type": "console_test_launcher", | |
| 245 }, | |
| 246 "display_unittests": { | 242 "display_unittests": { |
| 247 "label": "//ui/display:display_unittests", | 243 "label": "//ui/display:display_unittests", |
| 248 "type": "console_test_launcher", | 244 "type": "console_test_launcher", |
| 249 }, | 245 }, |
| 250 "events_unittests": { | 246 "events_unittests": { |
| 251 "label": "//ui/events:events_unittests", | 247 "label": "//ui/events:events_unittests", |
| 252 "type": "windowed_test_launcher", | 248 "type": "windowed_test_launcher", |
| 253 }, | 249 }, |
| 254 "extensions_browsertests": { | 250 "extensions_browsertests": { |
| 255 "label": "//extensions:extensions_browsertests", | 251 "label": "//extensions:extensions_browsertests", |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 }, | 570 }, |
| 575 "wm_unittests": { | 571 "wm_unittests": { |
| 576 "label": "//ui/wm:wm_unittests", | 572 "label": "//ui/wm:wm_unittests", |
| 577 "type": "windowed_test_launcher", | 573 "type": "windowed_test_launcher", |
| 578 }, | 574 }, |
| 579 "wtf_unittests": { | 575 "wtf_unittests": { |
| 580 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 576 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 581 "type": "console_test_launcher", | 577 "type": "console_test_launcher", |
| 582 }, | 578 }, |
| 583 } | 579 } |
| OLD | NEW |