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

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

Issue 2564413002: Run telemetry_unitests in serial (Closed)
Patch Set: Created 4 years 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 | « no previous file | 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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 ], 830 ],
831 }, 831 },
832 "telemetry_unittests": { 832 "telemetry_unittests": {
833 "label": "//chrome/test:telemetry_unittests", 833 "label": "//chrome/test:telemetry_unittests",
834 "type": "script", 834 "type": "script",
835 "script": "//testing/scripts/run_telemetry_as_googletest.py", 835 "script": "//testing/scripts/run_telemetry_as_googletest.py",
836 "args": [ 836 "args": [
837 "--xvfb", 837 "--xvfb",
838 "../../tools/perf/run_telemetry_tests", 838 "../../tools/perf/run_telemetry_tests",
839 "-v", 839 "-v",
840 # TODO(nedn, eyaich): Remove this flag once crbug.com/549140 is fixed &
841 # Telemetry no longer downloads files in parallel. (crbug.com/661434#c24)
842 "--jobs=1",
840 "--chrome-root", 843 "--chrome-root",
841 "../../", 844 "../../",
842 ], 845 ],
843 }, 846 },
844 "cc_perftests": { 847 "cc_perftests": {
845 "label": "//cc:cc_perftests", 848 "label": "//cc:cc_perftests",
846 "type": "script", 849 "type": "script",
847 "script": "//testing/scripts/run_gtest_perf_test.py", 850 "script": "//testing/scripts/run_gtest_perf_test.py",
848 "args": [ 851 "args": [
849 "cc_perftests", 852 "cc_perftests",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 }, 989 },
987 "wm_unittests": { 990 "wm_unittests": {
988 "label": "//ui/wm:wm_unittests", 991 "label": "//ui/wm:wm_unittests",
989 "type": "windowed_test_launcher", 992 "type": "windowed_test_launcher",
990 }, 993 },
991 "wtf_unittests": { 994 "wtf_unittests": {
992 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 995 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
993 "type": "console_test_launcher", 996 "type": "console_test_launcher",
994 }, 997 },
995 } 998 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698