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 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
10 | 10 |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 "type": "console_test_launcher", | 560 "type": "console_test_launcher", |
561 }, | 561 }, |
562 "mac_installer_unittests": { | 562 "mac_installer_unittests": { |
563 "label": "//chrome/installer/mac/app:mac_installer_unittests", | 563 "label": "//chrome/installer/mac/app:mac_installer_unittests", |
564 "type": "console_test_launcher", | 564 "type": "console_test_launcher", |
565 }, | 565 }, |
566 "mash:all" : { | 566 "mash:all" : { |
567 "label": "//mash:all", | 567 "label": "//mash:all", |
568 "type": "additional_compile_target", | 568 "type": "additional_compile_target", |
569 }, | 569 }, |
| 570 "mash_browser_tests": { |
| 571 "label": "//chrome/test:mash_browser_tests", |
| 572 "label_type": "group", |
| 573 "type": "windowed_test_launcher", |
| 574 "executable": "browser_tests", |
| 575 "args": [ |
| 576 "--run-in-mash", |
| 577 "--service-overrides=../../chrome/app/mash/mash_service_overrides.json", |
| 578 ], |
| 579 }, |
570 "media_unittests": { | 580 "media_unittests": { |
571 "label": "//media:media_unittests", | 581 "label": "//media:media_unittests", |
572 "type": "windowed_test_launcher", | 582 "type": "windowed_test_launcher", |
573 }, | 583 }, |
574 "media_service_unittests": { | 584 "media_service_unittests": { |
575 "label": "//media/mojo/services:media_service_unittests", | 585 "label": "//media/mojo/services:media_service_unittests", |
576 "type": "console_test_launcher", | 586 "type": "console_test_launcher", |
577 }, | 587 }, |
578 "media_blink_unittests": { | 588 "media_blink_unittests": { |
579 "label": "//media/blink:media_blink_unittests", | 589 "label": "//media/blink:media_blink_unittests", |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 }, | 1017 }, |
1008 "wm_unittests": { | 1018 "wm_unittests": { |
1009 "label": "//ui/wm:wm_unittests", | 1019 "label": "//ui/wm:wm_unittests", |
1010 "type": "windowed_test_launcher", | 1020 "type": "windowed_test_launcher", |
1011 }, | 1021 }, |
1012 "wtf_unittests": { | 1022 "wtf_unittests": { |
1013 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1023 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
1014 "type": "console_test_launcher", | 1024 "type": "console_test_launcher", |
1015 }, | 1025 }, |
1016 } | 1026 } |
OLD | NEW |