Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: testing/buildbot/gn_isolate_map.pyl

Issue 2487283002: Adding isolate script targets for all remaining C++ perf tests. (Closed)
Patch Set: Correct formattting in GN file Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/buildbot/chromium.perf.fyi.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
797 ], 797 ],
798 }, 798 },
799 "cc_perftests": { 799 "cc_perftests": {
800 "label": "//cc:cc_perftests", 800 "label": "//cc:cc_perftests",
801 "type": "script", 801 "type": "script",
802 "script": "//testing/scripts/run_gtest_perf_test.py", 802 "script": "//testing/scripts/run_gtest_perf_test.py",
803 "args": [ 803 "args": [
804 "cc_perftests", 804 "cc_perftests",
805 ], 805 ],
806 }, 806 },
807 "load_library_perf_tests": {
808 "label": "//chrome/test:load_library_perf_tests",
809 "type": "script",
810 "script": "//testing/scripts/run_gtest_perf_test.py",
811 "args": [
812 "load_library_perf_tests",
813 "--test-launcher-print-test-stdio=always"
814 ],
815 },
816 "tracing_perftests": {
817 "label": "//components/tracing:tracing_perftests",
818 "type": "script",
819 "script": "//testing/scripts/run_gtest_perf_test.py",
820 "args": [
821 "tracing_perftests",
822 "--test-launcher-print-test-stdio=always"
823 ],
824 },
825 "gpu_perftests": {
826 "label": "//gpu:gpu_perftests",
827 "type": "script",
828 "script": "//testing/scripts/run_gtest_perf_test.py",
829 "args": [
830 "gpu_perftests",
831 "--adb-path",
832 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb"
833 ],
834 },
835 "angle_perftests": {
836 "label": "//chrom/test:angle_perftests",
837 "type": "script",
838 "script": "//testing/scripts/run_gtest_perf_test.py",
839 "args": [
840 "angle_perftests",
841 "--test-launcher-print-test-stdio=always",
842 "--test-launcher-jobs=1"
843 ],
844 },
845 "performance_browser_tests": {
846 "label": "//chrom/test:performance_browser_tests",
847 "type": "script",
848 "script": "//testing/scripts/run_gtest_perf_test.py",
849 "args": [
850 "performance_browser_tests",
851 "--test-launcher-print-test-stdio=always",
852 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*",
853 "--test-launcher-jobs=1",
854 "--enable-gpu"
855 ],
856 },
807 "mus_ime_unittests": { 857 "mus_ime_unittests": {
808 "label": "//services/ui/ime:mus_ime_unittests", 858 "label": "//services/ui/ime:mus_ime_unittests",
809 "type": "windowed_test_launcher", 859 "type": "windowed_test_launcher",
810 }, 860 },
811 "ui_android_unittests": { 861 "ui_android_unittests": {
812 "label": "//ui/android:ui_android_unittests", 862 "label": "//ui/android:ui_android_unittests",
813 "type": "console_test_launcher", 863 "type": "console_test_launcher",
814 }, 864 },
815 "ui_base_unittests": { 865 "ui_base_unittests": {
816 "label": "//ui/base:ui_base_unittests", 866 "label": "//ui/base:ui_base_unittests",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 }, 925 },
876 "wm_unittests": { 926 "wm_unittests": {
877 "label": "//ui/wm:wm_unittests", 927 "label": "//ui/wm:wm_unittests",
878 "type": "windowed_test_launcher", 928 "type": "windowed_test_launcher",
879 }, 929 },
880 "wtf_unittests": { 930 "wtf_unittests": {
881 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 931 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
882 "type": "console_test_launcher", 932 "type": "console_test_launcher",
883 }, 933 },
884 } 934 }
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.perf.fyi.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698