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

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

Issue 2598483002: Revert of Use xvfb with Ozone CrOS. (Closed)
Patch Set: 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 # some platforms (eg. Linux Desktop, X11 CrOS and Ozone CrOS). 23 # an X11-based platform (use_x11=true or use_ozone=true &&
24 # --ozone_platform=x11).
24 # "console_test_launcher" 25 # "console_test_launcher"
25 # : the test is a gtest-based test that uses the "brave-new-test-launcher" 26 # : the test is a gtest-based test that uses the "brave-new-test-launcher"
26 # from //base/test:test_support but does not need Xvfb. 27 # from //base/test:test_support but does not need Xvfb.
27 # "gpu_browser_test" 28 # "gpu_browser_test"
28 # : the test is a subset of the browser_tests that will be run against 29 # : the test is a subset of the browser_tests that will be run against
29 # a real GPU. 30 # a real GPU.
30 # "additional_compile_target" 31 # "additional_compile_target"
31 # : this isn't actually a test, but we still need a mapping from the 32 # : this isn't actually a test, but we still need a mapping from the
32 # ninja target to the GN label in order to analyze it. 33 # ninja target to the GN label in order to analyze it.
33 # "junit_test" 34 # "junit_test"
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 "label": "//gpu/gles2_conform_support:gles2_conform_test", 443 "label": "//gpu/gles2_conform_support:gles2_conform_test",
443 "type": "console_test_launcher", 444 "type": "console_test_launcher",
444 }, 445 },
445 "gl_tests": { 446 "gl_tests": {
446 "label": "//gpu:gl_tests", 447 "label": "//gpu:gl_tests",
447 "type": "raw", 448 "type": "raw",
448 "args": [], 449 "args": [],
449 }, 450 },
450 "gl_unittests": { 451 "gl_unittests": {
451 "label": "//ui/gl:gl_unittests", 452 "label": "//ui/gl:gl_unittests",
453 "type": "raw",
454 "args": [],
455 },
456 "gl_unittests_ozonex": {
457 "label": "//ui/gl:gl_unittests_ozonex",
458 "label_type": "group",
452 "type": "windowed_test_launcher", 459 "type": "windowed_test_launcher",
453 "args": [], 460 "executable": "gl_unittests",
461 "args": ["--ozone-platform=x11"],
454 }, 462 },
455 "gn_all": { 463 "gn_all": {
456 "label": "//:gn_all", 464 "label": "//:gn_all",
457 "type": "additional_compile_target", 465 "type": "additional_compile_target",
458 }, 466 },
459 "gn_unittests": { 467 "gn_unittests": {
460 "label": "//tools/gn:gn_unittests", 468 "label": "//tools/gn:gn_unittests",
461 "type": "raw", 469 "type": "raw",
462 "args": [], 470 "args": [],
463 }, 471 },
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 }, 997 },
990 "wm_unittests": { 998 "wm_unittests": {
991 "label": "//ui/wm:wm_unittests", 999 "label": "//ui/wm:wm_unittests",
992 "type": "windowed_test_launcher", 1000 "type": "windowed_test_launcher",
993 }, 1001 },
994 "wtf_unittests": { 1002 "wtf_unittests": {
995 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 1003 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
996 "type": "console_test_launcher", 1004 "type": "console_test_launcher",
997 }, 1005 },
998 } 1006 }
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