| OLD | NEW |
| 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). | 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 "gl_tests": { | 433 "gl_tests": { |
| 433 "label": "//gpu:gl_tests", | 434 "label": "//gpu:gl_tests", |
| 434 "type": "raw", | 435 "type": "raw", |
| 435 "args": [], | 436 "args": [], |
| 436 }, | 437 }, |
| 437 "gl_unittests": { | 438 "gl_unittests": { |
| 438 "label": "//ui/gl:gl_unittests", | 439 "label": "//ui/gl:gl_unittests", |
| 439 "type": "raw", | 440 "type": "raw", |
| 440 "args": [], | 441 "args": [], |
| 441 }, | 442 }, |
| 443 "gl_unittests_ozonex": { |
| 444 "label": "//ui/gl:gl_unittests_ozonex", |
| 445 "label_type": "group", |
| 446 "type": "windowed_test_launcher", |
| 447 "executable": "gl_unittests", |
| 448 "args": ["--ozone-platform=x11"], |
| 449 }, |
| 442 "gn_all": { | 450 "gn_all": { |
| 443 "label": "//:gn_all", | 451 "label": "//:gn_all", |
| 444 "type": "additional_compile_target", | 452 "type": "additional_compile_target", |
| 445 }, | 453 }, |
| 446 "gn_unittests": { | 454 "gn_unittests": { |
| 447 "label": "//tools/gn:gn_unittests", | 455 "label": "//tools/gn:gn_unittests", |
| 448 "type": "raw", | 456 "type": "raw", |
| 449 "args": [], | 457 "args": [], |
| 450 }, | 458 }, |
| 451 "google_apis_unittests": { | 459 "google_apis_unittests": { |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 }, | 957 }, |
| 950 "wm_unittests": { | 958 "wm_unittests": { |
| 951 "label": "//ui/wm:wm_unittests", | 959 "label": "//ui/wm:wm_unittests", |
| 952 "type": "windowed_test_launcher", | 960 "type": "windowed_test_launcher", |
| 953 }, | 961 }, |
| 954 "wtf_unittests": { | 962 "wtf_unittests": { |
| 955 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 963 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 956 "type": "console_test_launcher", | 964 "type": "console_test_launcher", |
| 957 }, | 965 }, |
| 958 } | 966 } |
| OLD | NEW |