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

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

Issue 2840953002: Make tab_capture_end2end_tests work as a regular windowed_test_launcher. (Closed)
Patch Set: rebase 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/chromium.gpu.fyi.json ('k') | testing/xvfb.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 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 "args": [], 883 "args": [],
887 }, 884 },
888 "sync_integration_tests": { 885 "sync_integration_tests": {
889 "label": "//chrome/test:sync_integration_tests", 886 "label": "//chrome/test:sync_integration_tests",
890 "type": "windowed_test_launcher", 887 "type": "windowed_test_launcher",
891 }, 888 },
892 "system_webview_apk": { 889 "system_webview_apk": {
893 "label": "//android_webview:system_webview_apk", 890 "label": "//android_webview:system_webview_apk",
894 "type": "additional_compile_target", 891 "type": "additional_compile_target",
895 }, 892 },
896 "tab_capture_end2end_tests": {
897 # TODO(dpranke), TODO(crbug.com/714336): What is the right label to
898 # have here (and/or the right way to run this?).
899 "label": "//chrome/test:browser_tests",
900 "type": "gpu_browser_test",
901 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi PixelTest.EndToEnd*",
902 },
903 "telemetry_gpu_integration_test": { 893 "telemetry_gpu_integration_test": {
904 "label": "//chrome/test:telemetry_gpu_integration_test", 894 "label": "//chrome/test:telemetry_gpu_integration_test",
905 "type": "script", 895 "type": "script",
906 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", 896 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py",
907 "args": [ 897 "args": [
908 "../../content/test/gpu/run_gpu_integration_test.py", 898 "../../content/test/gpu/run_gpu_integration_test.py",
909 ], 899 ],
910 }, 900 },
911 "telemetry_gpu_unittests": { 901 "telemetry_gpu_unittests": {
912 "label": "//chrome/test:telemetry_gpu_unittests", 902 "label": "//chrome/test:telemetry_gpu_unittests",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 }, 1115 },
1126 "wm_unittests": { 1116 "wm_unittests": {
1127 "label": "//ui/wm:wm_unittests", 1117 "label": "//ui/wm:wm_unittests",
1128 "type": "windowed_test_launcher", 1118 "type": "windowed_test_launcher",
1129 }, 1119 },
1130 "wtf_unittests": { 1120 "wtf_unittests": {
1131 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests", 1121 "label": "//third_party/WebKit/Source/platform/wtf:wtf_unittests",
1132 "type": "console_test_launcher", 1122 "type": "console_test_launcher",
1133 }, 1123 },
1134 } 1124 }
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.gpu.fyi.json ('k') | testing/xvfb.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698