| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "type": "console_test_launcher", | 217 "type": "console_test_launcher", |
| 218 }, | 218 }, |
| 219 "cast_shell": { | 219 "cast_shell": { |
| 220 "label": "//chromecast:cast_shell", | 220 "label": "//chromecast:cast_shell", |
| 221 "type": "additional_compile_target", | 221 "type": "additional_compile_target", |
| 222 }, | 222 }, |
| 223 "cast_shell_apk": { | 223 "cast_shell_apk": { |
| 224 "label": "//chromecast:cast_shell_apk", | 224 "label": "//chromecast:cast_shell_apk", |
| 225 "type": "additional_compile_target", | 225 "type": "additional_compile_target", |
| 226 }, | 226 }, |
| 227 "cast_shell_browsertests": { | |
| 228 "label": "//chromecast/browser:cast_shell_browsertests", | |
| 229 "type": "console_test_launcher", | |
| 230 }, | |
| 231 "cast_shell_unittests": { | 227 "cast_shell_unittests": { |
| 232 "label": "//chromecast/app:cast_shell_unittests", | 228 "label": "//chromecast/app:cast_shell_unittests", |
| 233 "type": "console_test_launcher", | 229 "type": "console_test_launcher", |
| 234 }, | 230 }, |
| 231 "cast_shell_browser_test": { |
| 232 "label": "//chromecast/browser:cast_shell_browser_test", |
| 233 "type": "console_test_launcher", |
| 234 }, |
| 235 "cast_unittests": { | 235 "cast_unittests": { |
| 236 "label": "//media/cast:cast_unittests", | 236 "label": "//media/cast:cast_unittests", |
| 237 "type": "windowed_test_launcher", | 237 "type": "windowed_test_launcher", |
| 238 }, | 238 }, |
| 239 "cc_unittests": { | 239 "cc_unittests": { |
| 240 "label": "//cc:cc_unittests", | 240 "label": "//cc:cc_unittests", |
| 241 "type": "windowed_test_launcher", | 241 "type": "windowed_test_launcher", |
| 242 }, | 242 }, |
| 243 "chrome": { | 243 "chrome": { |
| 244 "label": "//chrome:chrome", | 244 "label": "//chrome:chrome", |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 }, | 879 }, |
| 880 "wm_unittests": { | 880 "wm_unittests": { |
| 881 "label": "//ui/wm:wm_unittests", | 881 "label": "//ui/wm:wm_unittests", |
| 882 "type": "windowed_test_launcher", | 882 "type": "windowed_test_launcher", |
| 883 }, | 883 }, |
| 884 "wtf_unittests": { | 884 "wtf_unittests": { |
| 885 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 885 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 886 "type": "console_test_launcher", | 886 "type": "console_test_launcher", |
| 887 }, | 887 }, |
| 888 } | 888 } |
| OLD | NEW |