| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 "type": "windowed_test_launcher", | 523 "type": "windowed_test_launcher", |
| 524 }, | 524 }, |
| 525 "unit_tests": { | 525 "unit_tests": { |
| 526 "label": "//chrome/test:unit_tests", | 526 "label": "//chrome/test:unit_tests", |
| 527 "type": "windowed_test_launcher", | 527 "type": "windowed_test_launcher", |
| 528 }, | 528 }, |
| 529 "url_unittests": { | 529 "url_unittests": { |
| 530 "label": "//url:url_unittests", | 530 "label": "//url:url_unittests", |
| 531 "type": "console_test_launcher", | 531 "type": "console_test_launcher", |
| 532 }, | 532 }, |
| 533 "window_manager_unittests": { | 533 "views_mus_unittests": { |
| 534 "label": "//components/mus/ws:window_manager_unittests", | 534 "label": "//ui/views/mus:views_mus_unittests", |
| 535 "type": "unknown", | 535 "type": "windowed_test_launcher", |
| 536 }, | 536 }, |
| 537 "views_unittests": { | 537 "views_unittests": { |
| 538 "label": "//ui/views:views_unittests", | 538 "label": "//ui/views:views_unittests", |
| 539 "type": "windowed_test_launcher", | 539 "type": "windowed_test_launcher", |
| 540 }, | 540 }, |
| 541 "webkit_unit_tests": { | 541 "webkit_unit_tests": { |
| 542 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", | 542 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 543 "type": "console_test_launcher", | 543 "type": "console_test_launcher", |
| 544 }, | 544 }, |
| 545 "window_manager_unittests": { |
| 546 "label": "//components/mus/ws:window_manager_unittests", |
| 547 "type": "unknown", |
| 548 }, |
| 545 "wm_unittests": { | 549 "wm_unittests": { |
| 546 "label": "//ui/wm:wm_unittests", | 550 "label": "//ui/wm:wm_unittests", |
| 547 "type": "windowed_test_launcher", | 551 "type": "windowed_test_launcher", |
| 548 }, | 552 }, |
| 549 "wtf_unittests": { | 553 "wtf_unittests": { |
| 550 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 554 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 551 "type": "console_test_launcher", | 555 "type": "console_test_launcher", |
| 552 }, | 556 }, |
| 553 } | 557 } |
| OLD | NEW |