| 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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 }, | 528 }, |
| 529 "sync_unit_tests": { | 529 "sync_unit_tests": { |
| 530 "label": "//sync:sync_unit_tests", | 530 "label": "//sync:sync_unit_tests", |
| 531 "type": "console_test_launcher", | 531 "type": "console_test_launcher", |
| 532 }, | 532 }, |
| 533 "tab_capture_end2end_tests": { | 533 "tab_capture_end2end_tests": { |
| 534 "label": "//chrome/test:browser_tests", | 534 "label": "//chrome/test:browser_tests", |
| 535 "type": "gpu_browser_test", | 535 "type": "gpu_browser_test", |
| 536 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", | 536 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", |
| 537 }, | 537 }, |
| 538 "telemetry_gpu_integration_test": { |
| 539 "label": "//chrome/test:telemetry_gpu_integration_test", |
| 540 "type": "script", |
| 541 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", |
| 542 "args": [ |
| 543 "../../content/test/gpu/run_gpu_integration_test.py", |
| 544 ], |
| 545 }, |
| 538 "telemetry_gpu_test": { | 546 "telemetry_gpu_test": { |
| 539 "label": "//chrome/test:telemetry_gpu_test", | 547 "label": "//chrome/test:telemetry_gpu_test", |
| 540 "type": "script", | 548 "type": "script", |
| 541 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py", | 549 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py", |
| 542 "args": [ | 550 "args": [ |
| 543 "../../content/test/gpu/run_gpu_test.py", | 551 "../../content/test/gpu/run_gpu_test.py", |
| 544 ], | 552 ], |
| 545 }, | 553 }, |
| 546 "telemetry_gpu_unittests": { | 554 "telemetry_gpu_unittests": { |
| 547 "label": "//chrome/test:telemetry_gpu_unittests", | 555 "label": "//chrome/test:telemetry_gpu_unittests", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 }, | 628 }, |
| 621 "wm_unittests": { | 629 "wm_unittests": { |
| 622 "label": "//ui/wm:wm_unittests", | 630 "label": "//ui/wm:wm_unittests", |
| 623 "type": "windowed_test_launcher", | 631 "type": "windowed_test_launcher", |
| 624 }, | 632 }, |
| 625 "wtf_unittests": { | 633 "wtf_unittests": { |
| 626 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 634 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 627 "type": "console_test_launcher", | 635 "type": "console_test_launcher", |
| 628 }, | 636 }, |
| 629 } | 637 } |
| OLD | NEW |