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 'type' field is used to determine what the command line for the test | 14 # The 'type' field is used to determine what the command line for the test |
15 # needs to be; valid values are: | 15 # needs to be; valid values are: |
16 # | 16 # |
17 # "windowed_test_launcher" | 17 # "windowed_test_launcher" |
18 # : the test is a gtest-based test that uses the 'brave-new-test-launcher' | 18 # : the test is a gtest-based test that uses the 'brave-new-test-launcher' |
19 # from //base/test:test_support and needs to run under Xvfb if run on | 19 # from //base/test:test_support and needs to run under Xvfb if run on |
20 # an X11-based platform (use_x11=true). | 20 # an X11-based platform (use_x11=true). |
21 # "console_test_launcher" | 21 # "console_test_launcher" |
22 # : the test is a gtest-based test that uses the 'brave-new-test-launcher' | 22 # : the test is a gtest-based test that uses the 'brave-new-test-launcher' |
23 # from //base/test:test_support but does not need Xvfb. | 23 # from //base/test:test_support but does not need Xvfb. |
24 # "gpu_browser_test" | 24 # "gpu_browser_test" |
25 # : the test is a subset of the browser_tests that will be run against | 25 # : the test is a subset of the browser_tests that will be run against |
26 # a real GPU. | 26 # a real GPU. |
27 # "raw" | 27 # "raw" |
28 # : the test is a standalone executable; it may take an optional list of | 28 # : the test is a standalone executable; it may take an optional list of |
29 # command line arguments in the 'args' field, but otherwise needs no | 29 # command line arguments in the 'args' field, but otherwise needs no |
30 # extra files or special handling. | 30 # extra files or special handling. |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 "tab_capture_end2end_tests": { | 373 "tab_capture_end2end_tests": { |
374 "label": "//chrome/test:browser_tests", | 374 "label": "//chrome/test:browser_tests", |
375 "type": "gpu_browser_test", | 375 "type": "gpu_browser_test", |
376 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", | 376 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", |
377 }, | 377 }, |
378 "telemetry_gpu_test": { | 378 "telemetry_gpu_test": { |
379 "label": "//chrome/test:telemetry_gpu_test", | 379 "label": "//chrome/test:telemetry_gpu_test", |
380 "type": "script", | 380 "type": "script", |
381 "script": "//content/test/gpu/run_gpu_test.py", | 381 "script": "//content/test/gpu/run_gpu_test.py", |
382 }, | 382 }, |
| 383 "telemetry_gpu_unittests": { |
| 384 "label": "//chrome/test:telemetry_gpu_unittests", |
| 385 "type": "script", |
| 386 "script": "//testing/scripts/run_telemetry_as_googletest.py", |
| 387 "args": [ |
| 388 "../../content/test/gpu/run_unittests.py", |
| 389 "-v", |
| 390 ], |
| 391 }, |
383 "ui_base_unittests": { | 392 "ui_base_unittests": { |
384 "label": "//ui/base:ui_base_unittests", | 393 "label": "//ui/base:ui_base_unittests", |
385 "type": "windowed_test_launcher", | 394 "type": "windowed_test_launcher", |
386 }, | 395 }, |
387 "ui_chromeos_unittests": { | 396 "ui_chromeos_unittests": { |
388 "label": "//ui/chromeos:ui_chromeos_unittests", | 397 "label": "//ui/chromeos:ui_chromeos_unittests", |
389 "type": "unknown", | 398 "type": "unknown", |
390 }, | 399 }, |
391 "ui_touch_selection_unittests": { | 400 "ui_touch_selection_unittests": { |
392 "label": "//ui/touch_selection:ui_touch_selection_unittests", | 401 "label": "//ui/touch_selection:ui_touch_selection_unittests", |
(...skipping 21 matching lines...) Expand all Loading... |
414 }, | 423 }, |
415 "wm_unittests": { | 424 "wm_unittests": { |
416 "label": "//ui/wm:wm_unittests", | 425 "label": "//ui/wm:wm_unittests", |
417 "type": "windowed_test_launcher", | 426 "type": "windowed_test_launcher", |
418 }, | 427 }, |
419 "wtf_unittests": { | 428 "wtf_unittests": { |
420 "label": "//third_party/WebKit/public:wtf_unittests", | 429 "label": "//third_party/WebKit/public:wtf_unittests", |
421 "type": "unknown", | 430 "type": "unknown", |
422 }, | 431 }, |
423 } | 432 } |
OLD | NEW |