Chromium Code Reviews| 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 495 "type": "windowed_test_launcher", | 495 "type": "windowed_test_launcher", |
| 496 }, | 496 }, |
| 497 "net_unittests": { | 497 "net_unittests": { |
| 498 "label": "//net:net_unittests", | 498 "label": "//net:net_unittests", |
| 499 "type": "console_test_launcher", | 499 "type": "console_test_launcher", |
| 500 }, | 500 }, |
| 501 "ozone_unittests": { | 501 "ozone_unittests": { |
| 502 "label": "//ui/ozone:ozone_unittests", | 502 "label": "//ui/ozone:ozone_unittests", |
| 503 "type": "console_test_launcher", | 503 "type": "console_test_launcher", |
| 504 }, | 504 }, |
| 505 "ozone_gl_unittests": { | |
| 506 "label": "//ui/ozone/gl:ozone_gl_unittests", | |
| 507 "type": "raw", | |
|
Ken Russell (switch to Gerrit)
2016/08/20 02:51:43
Is this type correct? I do see it's used by other
kylechar
2016/08/22 14:50:17
I just used the same setup as gl_unittests so unfo
| |
| 508 "args": [], | |
| 509 }, | |
| 505 "ppapi_unittests": { | 510 "ppapi_unittests": { |
| 506 "label": "//ppapi:ppapi_unittests", | 511 "label": "//ppapi:ppapi_unittests", |
| 507 "type": "console_test_launcher", | 512 "type": "console_test_launcher", |
| 508 }, | 513 }, |
| 509 "printing_unittests": { | 514 "printing_unittests": { |
| 510 "label": "//printing:printing_unittests", | 515 "label": "//printing:printing_unittests", |
| 511 "type": "console_test_launcher", | 516 "type": "console_test_launcher", |
| 512 }, | 517 }, |
| 513 "remoting_unittests": { | 518 "remoting_unittests": { |
| 514 "label": "//remoting:remoting_unittests", | 519 "label": "//remoting:remoting_unittests", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 657 }, | 662 }, |
| 658 "wm_unittests": { | 663 "wm_unittests": { |
| 659 "label": "//ui/wm:wm_unittests", | 664 "label": "//ui/wm:wm_unittests", |
| 660 "type": "windowed_test_launcher", | 665 "type": "windowed_test_launcher", |
| 661 }, | 666 }, |
| 662 "wtf_unittests": { | 667 "wtf_unittests": { |
| 663 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 668 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 664 "type": "console_test_launcher", | 669 "type": "console_test_launcher", |
| 665 }, | 670 }, |
| 666 } | 671 } |
| OLD | NEW |