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

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

Issue 2290373002: Adding perf test isolate and gn build target for swarming the benchmarks. (Closed)
Patch Set: Created 4 years, 3 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 }, 587 },
588 "telemetry_perf_unittests": { 588 "telemetry_perf_unittests": {
589 "label": "//chrome/test:telemetry_perf_unittests", 589 "label": "//chrome/test:telemetry_perf_unittests",
590 "type": "script", 590 "type": "script",
591 "script": "//testing/scripts/run_telemetry_as_googletest.py", 591 "script": "//testing/scripts/run_telemetry_as_googletest.py",
592 "args": [ 592 "args": [
593 "../../tools/perf/run_tests", 593 "../../tools/perf/run_tests",
594 "-v", 594 "-v",
595 ], 595 ],
596 }, 596 },
597 "telemetry_perf_tests": {
598 "label": "//chrome/test:telemetry_perf_tests",
599 "type": "script",
600 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py",
601 "args": [
602 "../../tools/perf/run_benchmark",
603 ],
604 },
597 "telemetry_unittests": { 605 "telemetry_unittests": {
598 "label": "//chrome/test:telemetry_unittests", 606 "label": "//chrome/test:telemetry_unittests",
599 "type": "script", 607 "type": "script",
600 "script": "//testing/scripts/run_telemetry_as_googletest.py", 608 "script": "//testing/scripts/run_telemetry_as_googletest.py",
601 "args": [ 609 "args": [
602 "--xvfb", 610 "--xvfb",
603 "../../tools/perf/run_telemetry_tests", 611 "../../tools/perf/run_telemetry_tests",
604 "-v", 612 "-v",
605 "--chrome-root", 613 "--chrome-root",
606 "../../", 614 "../../",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 }, 669 },
662 "wm_unittests": { 670 "wm_unittests": {
663 "label": "//ui/wm:wm_unittests", 671 "label": "//ui/wm:wm_unittests",
664 "type": "windowed_test_launcher", 672 "type": "windowed_test_launcher",
665 }, 673 },
666 "wtf_unittests": { 674 "wtf_unittests": {
667 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 675 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
668 "type": "console_test_launcher", 676 "type": "console_test_launcher",
669 }, 677 },
670 } 678 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698