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

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

Issue 2587473002: Use xvfb with Ozone CrOS. (Closed)
Patch Set: Cleanup. Created 4 years 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 # 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
11 # much always the same as the Ninja target name, since GYP target names are not 11 # much always the same as the Ninja target name, since GYP target names are not
12 # hierarchical). 12 # hierarchical).
13 # 13 #
14 # The "label" field specifies the matching GN label for the given ninja 14 # The "label" field specifies the matching GN label for the given ninja
15 # target. 15 # target.
16 # 16 #
17 # The "type" field is used to determine what the command line for the test 17 # The "type" field is used to determine what the command line for the test
18 # needs to be; valid values are: 18 # needs to be; valid values are:
19 # 19 #
20 # "windowed_test_launcher" 20 # "windowed_test_launcher"
21 # : the test is a gtest-based test that uses the "brave-new-test-launcher" 21 # : the test is a gtest-based test that uses the "brave-new-test-launcher"
22 # from //base/test:test_support and needs to run under Xvfb if run on 22 # from //base/test:test_support and needs to run under Xvfb if run on
23 # an X11-based platform (use_x11=true or use_ozone=true && 23 # some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS).
24 # --ozone_platform=x11).
25 # "console_test_launcher" 24 # "console_test_launcher"
26 # : the test is a gtest-based test that uses the "brave-new-test-launcher" 25 # : the test is a gtest-based test that uses the "brave-new-test-launcher"
27 # from //base/test:test_support but does not need Xvfb. 26 # from //base/test:test_support but does not need Xvfb.
28 # "gpu_browser_test" 27 # "gpu_browser_test"
29 # : the test is a subset of the browser_tests that will be run against 28 # : the test is a subset of the browser_tests that will be run against
30 # a real GPU. 29 # a real GPU.
31 # "additional_compile_target" 30 # "additional_compile_target"
32 # : this isn't actually a test, but we still need a mapping from the 31 # : this isn't actually a test, but we still need a mapping from the
33 # ninja target to the GN label in order to analyze it. 32 # ninja target to the GN label in order to analyze it.
34 # "junit_test" 33 # "junit_test"
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 "label": "//gpu/gles2_conform_support:gles2_conform_test", 442 "label": "//gpu/gles2_conform_support:gles2_conform_test",
444 "type": "console_test_launcher", 443 "type": "console_test_launcher",
445 }, 444 },
446 "gl_tests": { 445 "gl_tests": {
447 "label": "//gpu:gl_tests", 446 "label": "//gpu:gl_tests",
448 "type": "raw", 447 "type": "raw",
449 "args": [], 448 "args": [],
450 }, 449 },
451 "gl_unittests": { 450 "gl_unittests": {
452 "label": "//ui/gl:gl_unittests", 451 "label": "//ui/gl:gl_unittests",
453 "type": "raw", 452 "type": "windowed_test_launcher",
454 "args": [], 453 "args": [],
455 }, 454 },
456 "gl_unittests_ozonex": {
457 "label": "//ui/gl:gl_unittests_ozonex",
458 "label_type": "group",
459 "type": "windowed_test_launcher",
460 "executable": "gl_unittests",
461 "args": ["--ozone-platform=x11"],
462 },
463 "gn_all": { 455 "gn_all": {
464 "label": "//:gn_all", 456 "label": "//:gn_all",
465 "type": "additional_compile_target", 457 "type": "additional_compile_target",
466 }, 458 },
467 "gn_unittests": { 459 "gn_unittests": {
468 "label": "//tools/gn:gn_unittests", 460 "label": "//tools/gn:gn_unittests",
469 "type": "raw", 461 "type": "raw",
470 "args": [], 462 "args": [],
471 }, 463 },
472 "google_apis_unittests": { 464 "google_apis_unittests": {
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
997 }, 989 },
998 "wm_unittests": { 990 "wm_unittests": {
999 "label": "//ui/wm:wm_unittests", 991 "label": "//ui/wm:wm_unittests",
1000 "type": "windowed_test_launcher", 992 "type": "windowed_test_launcher",
1001 }, 993 },
1002 "wtf_unittests": { 994 "wtf_unittests": {
1003 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 995 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
1004 "type": "console_test_launcher", 996 "type": "console_test_launcher",
1005 }, 997 },
1006 } 998 }
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