| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 }, | 414 }, |
| 415 "nacl_loader_unittests": { | 415 "nacl_loader_unittests": { |
| 416 "label": "//components/nacl/loader:nacl_loader_unittests", | 416 "label": "//components/nacl/loader:nacl_loader_unittests", |
| 417 "type": "raw", | 417 "type": "raw", |
| 418 "args": [], | 418 "args": [], |
| 419 }, | 419 }, |
| 420 "net_unittests": { | 420 "net_unittests": { |
| 421 "label": "//net:net_unittests", | 421 "label": "//net:net_unittests", |
| 422 "type": "console_test_launcher", | 422 "type": "console_test_launcher", |
| 423 }, | 423 }, |
| 424 "network_service_unittests": { | |
| 425 "label": "//mojo/services/network:unittests", | |
| 426 "type": "unknown", | |
| 427 }, | |
| 428 "ozone_unittests": { | 424 "ozone_unittests": { |
| 429 "label": "//ui/ozone:ozone_unittests", | 425 "label": "//ui/ozone:ozone_unittests", |
| 430 "type": "unknown", | 426 "type": "unknown", |
| 431 }, | 427 }, |
| 432 "ppapi_unittests": { | 428 "ppapi_unittests": { |
| 433 "label": "//ppapi:ppapi_unittests", | 429 "label": "//ppapi:ppapi_unittests", |
| 434 "type": "console_test_launcher", | 430 "type": "console_test_launcher", |
| 435 }, | 431 }, |
| 436 "printing_unittests": { | 432 "printing_unittests": { |
| 437 "label": "//printing:printing_unittests", | 433 "label": "//printing:printing_unittests", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 }, | 569 }, |
| 574 "wm_unittests": { | 570 "wm_unittests": { |
| 575 "label": "//ui/wm:wm_unittests", | 571 "label": "//ui/wm:wm_unittests", |
| 576 "type": "windowed_test_launcher", | 572 "type": "windowed_test_launcher", |
| 577 }, | 573 }, |
| 578 "wtf_unittests": { | 574 "wtf_unittests": { |
| 579 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 575 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 580 "type": "console_test_launcher", | 576 "type": "console_test_launcher", |
| 581 }, | 577 }, |
| 582 } | 578 } |
| OLD | NEW |