| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 "net_unittests": { | 400 "net_unittests": { |
| 401 "label": "//net:net_unittests", | 401 "label": "//net:net_unittests", |
| 402 "type": "console_test_launcher", | 402 "type": "console_test_launcher", |
| 403 }, | 403 }, |
| 404 "ozone_unittests": { | 404 "ozone_unittests": { |
| 405 "label": "//ui/ozone:ozone_unittests", | 405 "label": "//ui/ozone:ozone_unittests", |
| 406 "type": "unknown", | 406 "type": "unknown", |
| 407 }, | 407 }, |
| 408 "ppapi_unittests": { | 408 "ppapi_unittests": { |
| 409 "label": "//ppapi:ppapi_unittests", | 409 "label": "//ppapi:ppapi_unittests", |
| 410 "type": "unknown", | 410 "type": "console_test_launcher", |
| 411 }, | 411 }, |
| 412 "printing_unittests": { | 412 "printing_unittests": { |
| 413 "label": "//printing:printing_unittests", | 413 "label": "//printing:printing_unittests", |
| 414 "type": "console_test_launcher", | 414 "type": "console_test_launcher", |
| 415 }, | 415 }, |
| 416 "remoting_unittests": { | 416 "remoting_unittests": { |
| 417 "label": "//remoting:remoting_unittests", | 417 "label": "//remoting:remoting_unittests", |
| 418 "type": "console_test_launcher", | 418 "type": "console_test_launcher", |
| 419 }, | 419 }, |
| 420 "resource_provider_unittests": { | 420 "resource_provider_unittests": { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 }, | 544 }, |
| 545 "wm_unittests": { | 545 "wm_unittests": { |
| 546 "label": "//ui/wm:wm_unittests", | 546 "label": "//ui/wm:wm_unittests", |
| 547 "type": "windowed_test_launcher", | 547 "type": "windowed_test_launcher", |
| 548 }, | 548 }, |
| 549 "wtf_unittests": { | 549 "wtf_unittests": { |
| 550 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 550 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 551 "type": "console_test_launcher", | 551 "type": "console_test_launcher", |
| 552 }, | 552 }, |
| 553 } | 553 } |
| OLD | NEW |