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

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

Issue 2838473002: Rework tab_capture_end2end_tests' test definition. (Closed)
Patch Set: fix typo Created 3 years, 8 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
« no previous file with comments | « testing/buildbot/filters/tab-capture-end2end-tests.browser_tests.filter ('k') | tools/mb/mb.py » ('j') | 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 # 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 12 matching lines...) Expand all
23 # The "type" field is used to determine what the command line for the test 23 # The "type" field is used to determine what the command line for the test
24 # needs to be; valid values are: 24 # needs to be; valid values are:
25 # 25 #
26 # "windowed_test_launcher" 26 # "windowed_test_launcher"
27 # : the test is a gtest-based test that uses the "brave-new-test-launcher" 27 # : the test is a gtest-based test that uses the "brave-new-test-launcher"
28 # from //base/test:test_support and needs to run under Xvfb if run on 28 # from //base/test:test_support and needs to run under Xvfb if run on
29 # some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS). 29 # some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS).
30 # "console_test_launcher" 30 # "console_test_launcher"
31 # : the test is a gtest-based test that uses the "brave-new-test-launcher" 31 # : the test is a gtest-based test that uses the "brave-new-test-launcher"
32 # from //base/test:test_support but does not need Xvfb. 32 # from //base/test:test_support but does not need Xvfb.
33 # "gpu_browser_test"
34 # : the test is a subset of the browser_tests that will be run against
35 # a real GPU.
36 # "additional_compile_target" 33 # "additional_compile_target"
37 # : this isn't actually a test, but we still need a mapping from the 34 # : this isn't actually a test, but we still need a mapping from the
38 # ninja target to the GN label in order to analyze it. 35 # ninja target to the GN label in order to analyze it.
39 # "junit_test" 36 # "junit_test"
40 # : this is a JUnit test. 37 # : this is a JUnit test.
41 # "raw" 38 # "raw"
42 # : the test is a standalone executable; it may take an optional list of 39 # : the test is a standalone executable; it may take an optional list of
43 # command line arguments in the "args" field, but otherwise needs no 40 # command line arguments in the "args" field, but otherwise needs no
44 # extra files or special handling. 41 # extra files or special handling.
45 # "script" 42 # "script"
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 "args": [], 884 "args": [],
888 }, 885 },
889 "sync_integration_tests": { 886 "sync_integration_tests": {
890 "label": "//chrome/test:sync_integration_tests", 887 "label": "//chrome/test:sync_integration_tests",
891 "type": "windowed_test_launcher", 888 "type": "windowed_test_launcher",
892 }, 889 },
893 "system_webview_apk": { 890 "system_webview_apk": {
894 "label": "//android_webview:system_webview_apk", 891 "label": "//android_webview:system_webview_apk",
895 "type": "additional_compile_target", 892 "type": "additional_compile_target",
896 }, 893 },
897 "tab_capture_end2end_tests": {
898 "label": "//chrome/test:browser_tests",
899 "type": "gpu_browser_test",
900 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi PixelTest.EndToEnd*",
901 },
902 "telemetry_gpu_integration_test": { 894 "telemetry_gpu_integration_test": {
903 "label": "//chrome/test:telemetry_gpu_integration_test", 895 "label": "//chrome/test:telemetry_gpu_integration_test",
904 "type": "script", 896 "type": "script",
905 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", 897 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
906 "args": [ 898 "args": [
907 "../../content/test/gpu/run_gpu_integration_test.py", 899 "../../content/test/gpu/run_gpu_integration_test.py",
908 ], 900 ],
909 }, 901 },
910 "telemetry_gpu_unittests": { 902 "telemetry_gpu_unittests": {
911 "label": "//chrome/test:telemetry_gpu_unittests", 903 "label": "//chrome/test:telemetry_gpu_unittests",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 }, 1116 },
1125 "wm_unittests": { 1117 "wm_unittests": {
1126 "label": "//ui/wm:wm_unittests", 1118 "label": "//ui/wm:wm_unittests",
1127 "type": "windowed_test_launcher", 1119 "type": "windowed_test_launcher",
1128 }, 1120 },
1129 "wtf_unittests": { 1121 "wtf_unittests": {
1130 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests", 1122 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
1131 "type": "console_test_launcher", 1123 "type": "console_test_launcher",
1132 }, 1124 },
1133 } 1125 }
OLDNEW
« no previous file with comments | « testing/buildbot/filters/tab-capture-end2end-tests.browser_tests.filter ('k') | tools/mb/mb.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698