| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 "args": [], | 279 "args": [], |
| 280 }, | 280 }, |
| 281 "google_apis_unittests": { | 281 "google_apis_unittests": { |
| 282 "label": "//google_apis:google_apis_unittests", | 282 "label": "//google_apis:google_apis_unittests", |
| 283 "type": "console_test_launcher", | 283 "type": "console_test_launcher", |
| 284 }, | 284 }, |
| 285 "gpu_unittests": { | 285 "gpu_unittests": { |
| 286 "label": "//gpu:gpu_unittests", | 286 "label": "//gpu:gpu_unittests", |
| 287 "type": "windowed_test_launcher", | 287 "type": "windowed_test_launcher", |
| 288 }, | 288 }, |
| 289 "html_viewer_unittests": { | |
| 290 "label": "//components/html_viewer:html_viewer_unittests", | |
| 291 "type": "unknown", | |
| 292 }, | |
| 293 "installer_util_unittests": { | 289 "installer_util_unittests": { |
| 294 "label": "//chrome/installer/util:installer_util_unittests", | 290 "label": "//chrome/installer/util:installer_util_unittests", |
| 295 "type": "unknown", | 291 "type": "unknown", |
| 296 }, | 292 }, |
| 297 "interactive_ui_tests": { | 293 "interactive_ui_tests": { |
| 298 "label": "//chrome/test:interactive_ui_tests", | 294 "label": "//chrome/test:interactive_ui_tests", |
| 299 "type": "windowed_test_launcher", | 295 "type": "windowed_test_launcher", |
| 300 }, | 296 }, |
| 301 "ipc_mojo_unittests": { | 297 "ipc_mojo_unittests": { |
| 302 "label": "//ipc/mojo:ipc_mojo_unittests", | 298 "label": "//ipc/mojo:ipc_mojo_unittests", |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 }, | 542 }, |
| 547 "wm_unittests": { | 543 "wm_unittests": { |
| 548 "label": "//ui/wm:wm_unittests", | 544 "label": "//ui/wm:wm_unittests", |
| 549 "type": "windowed_test_launcher", | 545 "type": "windowed_test_launcher", |
| 550 }, | 546 }, |
| 551 "wtf_unittests": { | 547 "wtf_unittests": { |
| 552 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 548 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 553 "type": "console_test_launcher", | 549 "type": "console_test_launcher", |
| 554 }, | 550 }, |
| 555 } | 551 } |
| OLD | NEW |