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

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

Issue 2867253002: Enable cc_perftests, gpu_perftests, and tracing_perftests on Nexus 5X Perf (Closed)
Patch Set: Created 3 years, 7 months 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
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 # This is a .pyl, or "Python Literal", file. You can treat it just like a 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a
6 # .json file, with the following exceptions: 6 # .json file, with the following exceptions:
7 # * all keys must be quoted (use single quotes, please); 7 # * all keys must be quoted (use single quotes, please);
8 # * comments are allowed, using '#' syntax; and 8 # * comments are allowed, using '#' syntax; and
9 # * trailing commas are allowed. 9 # * trailing commas are allowed.
10 10
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 "--chrome-root", 934 "--chrome-root",
935 "../../", 935 "../../",
936 ], 936 ],
937 }, 937 },
938 "cc_perftests": { 938 "cc_perftests": {
939 "label": "//cc:cc_perftests", 939 "label": "//cc:cc_perftests",
940 "type": "script", 940 "type": "script",
941 "script": "//testing/scripts/run_gtest_perf_test.py", 941 "script": "//testing/scripts/run_gtest_perf_test.py",
942 "args": [ 942 "args": [
943 "cc_perftests", 943 "cc_perftests",
944 "--adb-path",
945 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb"
nednguyen 2017/05/09 00:08:17 John: I am copying this from https://cs.chromium.o
jbudorick 2017/05/09 14:10:12 FWIW, I think Emily was correct here. Using the ch
944 ], 946 ],
945 }, 947 },
946 "media_perftests": { 948 "media_perftests": {
947 "label": "//media:media_perftests", 949 "label": "//media:media_perftests",
948 "type": "script", 950 "type": "script",
949 "script": "//testing/scripts/run_gtest_perf_test.py", 951 "script": "//testing/scripts/run_gtest_perf_test.py",
950 "args": [ 952 "args": [
951 "media_perftests", 953 "media_perftests",
952 ], 954 ],
953 }, 955 },
954 "load_library_perf_tests": { 956 "load_library_perf_tests": {
955 "label": "//chrome/test:load_library_perf_tests", 957 "label": "//chrome/test:load_library_perf_tests",
956 "type": "script", 958 "type": "script",
957 "script": "//testing/scripts/run_gtest_perf_test.py", 959 "script": "//testing/scripts/run_gtest_perf_test.py",
958 "args": [ 960 "args": [
959 "load_library_perf_tests", 961 "load_library_perf_tests",
960 "--test-launcher-print-test-stdio=always" 962 "--test-launcher-print-test-stdio=always"
961 ], 963 ],
962 }, 964 },
963 "tracing_perftests": { 965 "tracing_perftests": {
964 "label": "//components/tracing:tracing_perftests", 966 "label": "//components/tracing:tracing_perftests",
965 "type": "script", 967 "type": "script",
966 "script": "//testing/scripts/run_gtest_perf_test.py", 968 "script": "//testing/scripts/run_gtest_perf_test.py",
967 "args": [ 969 "args": [
968 "tracing_perftests", 970 "tracing_perftests",
969 "--test-launcher-print-test-stdio=always" 971 "--test-launcher-print-test-stdio=always",
972 "--adb-path",
973 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb"
970 ], 974 ],
971 }, 975 },
972 "gpu_perftests": { 976 "gpu_perftests": {
973 "label": "//gpu:gpu_perftests", 977 "label": "//gpu:gpu_perftests",
974 "type": "script", 978 "type": "script",
975 "script": "//testing/scripts/run_gtest_perf_test.py", 979 "script": "//testing/scripts/run_gtest_perf_test.py",
976 "args": [ 980 "args": [
977 "gpu_perftests", 981 "gpu_perftests",
978 "--adb-path", 982 "--adb-path",
979 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb" 983 "src/third_party/catapult/devil/bin/deps/linux2/x86_64/bin/adb"
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 }, 1115 },
1112 "wm_unittests": { 1116 "wm_unittests": {
1113 "label": "//ui/wm:wm_unittests", 1117 "label": "//ui/wm:wm_unittests",
1114 "type": "windowed_test_launcher", 1118 "type": "windowed_test_launcher",
1115 }, 1119 },
1116 "wtf_unittests": { 1120 "wtf_unittests": {
1117 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests", 1121 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
1118 "type": "console_test_launcher", 1122 "type": "console_test_launcher",
1119 }, 1123 },
1120 } 1124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698