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

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

Issue 2840603002: Revert of Rework tab_capture_end2end_tests' test definition. (Closed)
Patch Set: 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.
33 # "additional_compile_target" 36 # "additional_compile_target"
34 # : this isn't actually a test, but we still need a mapping from the 37 # : this isn't actually a test, but we still need a mapping from the
35 # ninja target to the GN label in order to analyze it. 38 # ninja target to the GN label in order to analyze it.
36 # "junit_test" 39 # "junit_test"
37 # : this is a JUnit test. 40 # : this is a JUnit test.
38 # "raw" 41 # "raw"
39 # : the test is a standalone executable; it may take an optional list of 42 # : the test is a standalone executable; it may take an optional list of
40 # command line arguments in the "args" field, but otherwise needs no 43 # command line arguments in the "args" field, but otherwise needs no
41 # extra files or special handling. 44 # extra files or special handling.
42 # "script" 45 # "script"
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 "args": [], 887 "args": [],
885 }, 888 },
886 "sync_integration_tests": { 889 "sync_integration_tests": {
887 "label": "//chrome/test:sync_integration_tests", 890 "label": "//chrome/test:sync_integration_tests",
888 "type": "windowed_test_launcher", 891 "type": "windowed_test_launcher",
889 }, 892 },
890 "system_webview_apk": { 893 "system_webview_apk": {
891 "label": "//android_webview:system_webview_apk", 894 "label": "//android_webview:system_webview_apk",
892 "type": "additional_compile_target", 895 "type": "additional_compile_target",
893 }, 896 },
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 },
894 "telemetry_gpu_integration_test": { 902 "telemetry_gpu_integration_test": {
895 "label": "//chrome/test:telemetry_gpu_integration_test", 903 "label": "//chrome/test:telemetry_gpu_integration_test",
896 "type": "script", 904 "type": "script",
897 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", 905 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
898 "args": [ 906 "args": [
899 "../../content/test/gpu/run_gpu_integration_test.py", 907 "../../content/test/gpu/run_gpu_integration_test.py",
900 ], 908 ],
901 }, 909 },
902 "telemetry_gpu_unittests": { 910 "telemetry_gpu_unittests": {
903 "label": "//chrome/test:telemetry_gpu_unittests", 911 "label": "//chrome/test:telemetry_gpu_unittests",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 }, 1124 },
1117 "wm_unittests": { 1125 "wm_unittests": {
1118 "label": "//ui/wm:wm_unittests", 1126 "label": "//ui/wm:wm_unittests",
1119 "type": "windowed_test_launcher", 1127 "type": "windowed_test_launcher",
1120 }, 1128 },
1121 "wtf_unittests": { 1129 "wtf_unittests": {
1122 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests", 1130 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
1123 "type": "console_test_launcher", 1131 "type": "console_test_launcher",
1124 }, 1132 },
1125 } 1133 }
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