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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 129 "type": "console_test_launcher", | 129 "type": "console_test_launcher", |
| 130 }, | 130 }, |
| 131 "blink_heap_unittests": { | 131 "blink_heap_unittests": { |
| 132 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", | 132 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", |
| 133 "type": "console_test_launcher", | 133 "type": "console_test_launcher", |
| 134 }, | 134 }, |
| 135 "blink_platform_unittests": { | 135 "blink_platform_unittests": { |
| 136 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", | 136 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", |
| 137 "type": "console_test_launcher", | 137 "type": "console_test_launcher", |
| 138 }, | 138 }, |
| 139 "breakpad_unittests": { | |
|
jbudorick
2016/04/05 19:57:01
?
ghost stip (do not use)
2016/04/05 20:42:53
manage.py complained. should I bail out and figure
| |
| 140 "label": "//breakpad:breakpad_unittests", | |
| 141 "type": "console_test_launcher", | |
| 142 }, | |
| 143 "browser_tests": { | 139 "browser_tests": { |
| 144 "label": "//chrome/test:browser_tests", | 140 "label": "//chrome/test:browser_tests", |
| 145 "type": "windowed_test_launcher", | 141 "type": "windowed_test_launcher", |
| 146 }, | 142 }, |
| 147 "cacheinvalidation_unittests": { | 143 "cacheinvalidation_unittests": { |
| 148 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 144 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 149 "type": "raw", | 145 "type": "raw", |
| 150 "args": [ | 146 "args": [ |
| 151 "--test-launcher-bot-mode", | 147 "--test-launcher-bot-mode", |
| 152 ], | 148 ], |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 569 }, | 565 }, |
| 570 "wm_unittests": { | 566 "wm_unittests": { |
| 571 "label": "//ui/wm:wm_unittests", | 567 "label": "//ui/wm:wm_unittests", |
| 572 "type": "windowed_test_launcher", | 568 "type": "windowed_test_launcher", |
| 573 }, | 569 }, |
| 574 "wtf_unittests": { | 570 "wtf_unittests": { |
| 575 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 571 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 576 "type": "console_test_launcher", | 572 "type": "console_test_launcher", |
| 577 }, | 573 }, |
| 578 } | 574 } |
| OLD | NEW |