| 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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 "type": "script", | 797 "type": "script", |
| 798 "script": "//testing/scripts/run_telemetry_as_googletest.py", | 798 "script": "//testing/scripts/run_telemetry_as_googletest.py", |
| 799 "args": [ | 799 "args": [ |
| 800 "--xvfb", | 800 "--xvfb", |
| 801 "../../tools/perf/run_telemetry_tests", | 801 "../../tools/perf/run_telemetry_tests", |
| 802 "-v", | 802 "-v", |
| 803 "--chrome-root", | 803 "--chrome-root", |
| 804 "../../", | 804 "../../", |
| 805 ], | 805 ], |
| 806 }, | 806 }, |
| 807 "cc_perftests": { |
| 808 "label": "//cc:cc_perftests", |
| 809 "type": "script", |
| 810 "script": "//testing/scripts/run_gtest_perf_test.py", |
| 811 "args": [ |
| 812 "cc_perftests", |
| 813 ], |
| 814 }, |
| 807 "mus_ime_unittests": { | 815 "mus_ime_unittests": { |
| 808 "label": "//services/ui/ime:mus_ime_unittests", | 816 "label": "//services/ui/ime:mus_ime_unittests", |
| 809 "type": "windowed_test_launcher", | 817 "type": "windowed_test_launcher", |
| 810 }, | 818 }, |
| 811 "ui_android_unittests": { | 819 "ui_android_unittests": { |
| 812 "label": "//ui/android:ui_android_unittests", | 820 "label": "//ui/android:ui_android_unittests", |
| 813 "type": "console_test_launcher", | 821 "type": "console_test_launcher", |
| 814 }, | 822 }, |
| 815 "ui_base_unittests": { | 823 "ui_base_unittests": { |
| 816 "label": "//ui/base:ui_base_unittests", | 824 "label": "//ui/base:ui_base_unittests", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 }, | 883 }, |
| 876 "wm_unittests": { | 884 "wm_unittests": { |
| 877 "label": "//ui/wm:wm_unittests", | 885 "label": "//ui/wm:wm_unittests", |
| 878 "type": "windowed_test_launcher", | 886 "type": "windowed_test_launcher", |
| 879 }, | 887 }, |
| 880 "wtf_unittests": { | 888 "wtf_unittests": { |
| 881 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 889 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 882 "type": "console_test_launcher", | 890 "type": "console_test_launcher", |
| 883 }, | 891 }, |
| 884 } | 892 } |
| OLD | NEW |