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

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

Issue 2640133002: Reland: Use xvfb with Ozone CrOS. (Closed)
Patch Set: Add target. Created 3 years, 11 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.chromiumos.json ('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
11 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and 11 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and
12 # test type classifications for the tests that are run on the bots. 12 # test type classifications for the tests that are run on the bots.
13 # 13 #
14 # This mapping is used by MB so that we can uniformly refer to test binaries 14 # This mapping is used by MB so that we can uniformly refer to test binaries
15 # by their Ninja target names in the recipes and not need to worry about how 15 # by their Ninja target names in the recipes and not need to worry about how
16 # they are referred to in GN or GYP specifically (the GYP target name is pretty 16 # they are referred to in GN or GYP specifically (the GYP target name is pretty
17 # much always the same as the Ninja target name, since GYP target names are not 17 # much always the same as the Ninja target name, since GYP target names are not
18 # hierarchical). 18 # hierarchical).
19 # 19 #
20 # The "label" field specifies the matching GN label for the given ninja 20 # The "label" field specifies the matching GN label for the given ninja
21 # target. 21 # target.
22 # 22 #
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 # an X11-based platform (use_x11=true or use_ozone=true && 29 # some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS).
30 # --ozone_platform=x11).
31 # "console_test_launcher" 30 # "console_test_launcher"
32 # : 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"
33 # from //base/test:test_support but does not need Xvfb. 32 # from //base/test:test_support but does not need Xvfb.
34 # "gpu_browser_test" 33 # "gpu_browser_test"
35 # : the test is a subset of the browser_tests that will be run against 34 # : the test is a subset of the browser_tests that will be run against
36 # a real GPU. 35 # a real GPU.
37 # "additional_compile_target" 36 # "additional_compile_target"
38 # : 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
39 # ninja target to the GN label in order to analyze it. 38 # ninja target to the GN label in order to analyze it.
40 # "junit_test" 39 # "junit_test"
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 "gl_tests": { 439 "gl_tests": {
441 "label": "//gpu:gl_tests", 440 "label": "//gpu:gl_tests",
442 "type": "raw", 441 "type": "raw",
443 "args": [], 442 "args": [],
444 }, 443 },
445 "gl_unittests": { 444 "gl_unittests": {
446 "label": "//ui/gl:gl_unittests", 445 "label": "//ui/gl:gl_unittests",
447 "type": "raw", 446 "type": "raw",
448 "args": [], 447 "args": [],
449 }, 448 },
450 "gl_unittests_ozonex": { 449 "gl_unittests_ozone": {
451 "label": "//ui/gl:gl_unittests_ozonex", 450 "label": "//ui/gl:gl_unittests_ozone",
452 "label_type": "group", 451 "label_type": "group",
453 "type": "windowed_test_launcher", 452 "type": "windowed_test_launcher",
454 "executable": "gl_unittests", 453 "executable": "gl_unittests",
455 "args": ["--ozone-platform=x11"],
456 }, 454 },
457 "gn_unittests": { 455 "gn_unittests": {
458 "label": "//tools/gn:gn_unittests", 456 "label": "//tools/gn:gn_unittests",
459 "type": "raw", 457 "type": "raw",
460 "args": [], 458 "args": [],
461 }, 459 },
462 "google_apis_unittests": { 460 "google_apis_unittests": {
463 "label": "//google_apis:google_apis_unittests", 461 "label": "//google_apis:google_apis_unittests",
464 "type": "console_test_launcher", 462 "type": "console_test_launcher",
465 }, 463 },
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 }, 991 },
994 "wm_unittests": { 992 "wm_unittests": {
995 "label": "//ui/wm:wm_unittests", 993 "label": "//ui/wm:wm_unittests",
996 "type": "windowed_test_launcher", 994 "type": "windowed_test_launcher",
997 }, 995 },
998 "wtf_unittests": { 996 "wtf_unittests": {
999 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 997 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
1000 "type": "console_test_launcher", 998 "type": "console_test_launcher",
1001 }, 999 },
1002 } 1000 }
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.chromiumos.json ('k') | tools/mb/mb.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698