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

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

Issue 2027873002: Enable telemetry_perf_unittests on swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address kbr's comments. Created 4 years, 6 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 "args": [ 546 "args": [
547 "../../content/test/gpu/run_unittests.py", 547 "../../content/test/gpu/run_unittests.py",
548 "-v", 548 "-v",
549 ], 549 ],
550 }, 550 },
551 "telemetry_perf_unittests": { 551 "telemetry_perf_unittests": {
552 "label": "//chrome/test:telemetry_perf_unittests", 552 "label": "//chrome/test:telemetry_perf_unittests",
553 "type": "script", 553 "type": "script",
554 "script": "//testing/scripts/run_telemetry_as_googletest.py", 554 "script": "//testing/scripts/run_telemetry_as_googletest.py",
555 "args": [ 555 "args": [
556 "--xvfb",
ghost stip (do not use) 2016/06/01 08:42:26 --xvfb breaks on android swarming bots, so we flat
557 "../../tools/perf/run_tests", 556 "../../tools/perf/run_tests",
558 "-v", 557 "-v",
559 ], 558 ],
560 }, 559 },
561 "telemetry_unittests": { 560 "telemetry_unittests": {
562 "label": "//chrome/test:telemetry_unittests", 561 "label": "//chrome/test:telemetry_unittests",
563 "type": "script", 562 "type": "script",
564 "script": "//testing/scripts/run_telemetry_as_googletest.py", 563 "script": "//testing/scripts/run_telemetry_as_googletest.py",
565 "args": [ 564 "args": [
566 "--xvfb", 565 "--xvfb",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 }, 616 },
618 "wm_unittests": { 617 "wm_unittests": {
619 "label": "//ui/wm:wm_unittests", 618 "label": "//ui/wm:wm_unittests",
620 "type": "windowed_test_launcher", 619 "type": "windowed_test_launcher",
621 }, 620 },
622 "wtf_unittests": { 621 "wtf_unittests": {
623 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 622 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
624 "type": "console_test_launcher", 623 "type": "console_test_launcher",
625 }, 624 },
626 } 625 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698