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

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

Issue 2442663004: Adding isolate for cc_perftests and triggering job on FYI waterfall (Closed)
Patch Set: Removing arg Created 4 years, 2 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 # 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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 "type": "script", 857 "type": "script",
858 "script": "//testing/scripts/run_telemetry_as_googletest.py", 858 "script": "//testing/scripts/run_telemetry_as_googletest.py",
859 "args": [ 859 "args": [
860 "--xvfb", 860 "--xvfb",
861 "../../tools/perf/run_telemetry_tests", 861 "../../tools/perf/run_telemetry_tests",
862 "-v", 862 "-v",
863 "--chrome-root", 863 "--chrome-root",
864 "../../", 864 "../../",
865 ], 865 ],
866 }, 866 },
867 "cc_perftests": {
868 "label": "//chrome/test:cc_perftests",
869 "type": "script",
870 "script": "//testing/scripts/run_gtest_perf_test.py",
871 "args": [
872 "cc_perftests",
873 ],
874 },
867 "test_support_unittests": { 875 "test_support_unittests": {
868 "label": "//webrtc/test:test_support_unittests", 876 "label": "//webrtc/test:test_support_unittests",
869 "type": "console_test_launcher", 877 "type": "console_test_launcher",
870 }, 878 },
871 "tools_unittests": { 879 "tools_unittests": {
872 "label": "//webrtc/tools:tools_unittests", 880 "label": "//webrtc/tools:tools_unittests",
873 "type": "console_test_launcher", 881 "type": "console_test_launcher",
874 }, 882 },
875 "mus_ime_unittests": { 883 "mus_ime_unittests": {
876 "label": "//services/ui/ime:mus_ime_unittests", 884 "label": "//services/ui/ime:mus_ime_unittests",
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 }, 967 },
960 "wtf_unittests": { 968 "wtf_unittests": {
961 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 969 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
962 "type": "console_test_launcher", 970 "type": "console_test_launcher",
963 }, 971 },
964 "xmllite_xmpp_unittests": { 972 "xmllite_xmpp_unittests": {
965 "label": "//webrtc:xmllite_xmpp_unittests", 973 "label": "//webrtc:xmllite_xmpp_unittests",
966 "type": "console_test_launcher", 974 "type": "console_test_launcher",
967 } 975 }
968 } 976 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698