| 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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", | 788 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", |
| 789 }, | 789 }, |
| 790 "telemetry_gpu_integration_test": { | 790 "telemetry_gpu_integration_test": { |
| 791 "label": "//chrome/test:telemetry_gpu_integration_test", | 791 "label": "//chrome/test:telemetry_gpu_integration_test", |
| 792 "type": "script", | 792 "type": "script", |
| 793 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", | 793 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", |
| 794 "args": [ | 794 "args": [ |
| 795 "../../content/test/gpu/run_gpu_integration_test.py", | 795 "../../content/test/gpu/run_gpu_integration_test.py", |
| 796 ], | 796 ], |
| 797 }, | 797 }, |
| 798 "telemetry_gpu_test": { | |
| 799 "label": "//chrome/test:telemetry_gpu_test", | |
| 800 "type": "script", | |
| 801 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py", | |
| 802 "args": [ | |
| 803 "../../content/test/gpu/run_gpu_test.py", | |
| 804 ], | |
| 805 }, | |
| 806 "telemetry_gpu_unittests": { | 798 "telemetry_gpu_unittests": { |
| 807 "label": "//chrome/test:telemetry_gpu_unittests", | 799 "label": "//chrome/test:telemetry_gpu_unittests", |
| 808 "type": "script", | 800 "type": "script", |
| 809 "script": "//testing/scripts/run_telemetry_as_googletest.py", | 801 "script": "//testing/scripts/run_telemetry_as_googletest.py", |
| 810 "args": [ | 802 "args": [ |
| 811 "../../content/test/gpu/run_unittests.py", | 803 "../../content/test/gpu/run_unittests.py", |
| 812 "-v", | 804 "-v", |
| 813 ], | 805 ], |
| 814 }, | 806 }, |
| 815 "telemetry_perf_unittests": { | 807 "telemetry_perf_unittests": { |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 }, | 981 }, |
| 990 "wm_unittests": { | 982 "wm_unittests": { |
| 991 "label": "//ui/wm:wm_unittests", | 983 "label": "//ui/wm:wm_unittests", |
| 992 "type": "windowed_test_launcher", | 984 "type": "windowed_test_launcher", |
| 993 }, | 985 }, |
| 994 "wtf_unittests": { | 986 "wtf_unittests": { |
| 995 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 987 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 996 "type": "console_test_launcher", | 988 "type": "console_test_launcher", |
| 997 }, | 989 }, |
| 998 } | 990 } |
| OLD | NEW |