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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 "tab_capture_end2end_tests": { | 369 "tab_capture_end2end_tests": { |
370 "label": "//chrome/test:browser_tests", | 370 "label": "//chrome/test:browser_tests", |
371 "type": "gpu_browser_test", | 371 "type": "gpu_browser_test", |
372 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", | 372 "gtest_filter": "CastStreamingApiTestWithPixelOutput.EndToEnd*:TabCaptureApi
PixelTest.EndToEnd*", |
373 }, | 373 }, |
374 "telemetry_gpu_test": { | 374 "telemetry_gpu_test": { |
375 "label": "//chrome/test:telemetry_gpu_test", | 375 "label": "//chrome/test:telemetry_gpu_test", |
376 "type": "script", | 376 "type": "script", |
377 "script": "//content/test/gpu/run_gpu_test.py", | 377 "script": "//content/test/gpu/run_gpu_test.py", |
378 }, | 378 }, |
| 379 "telemetry_gpu_unittests": { |
| 380 "label": "//chrome/test:telemetry_gpu_unittests", |
| 381 "type": "script", |
| 382 "script": "//testing/scripts/run_telemetry_as_googletest.py", |
| 383 "args": [ |
| 384 "../../content/test/gpu/run_unittests.py", |
| 385 "-v", |
| 386 ], |
| 387 }, |
379 "ui_base_unittests": { | 388 "ui_base_unittests": { |
380 "label": "//ui/base:ui_base_unittests", | 389 "label": "//ui/base:ui_base_unittests", |
381 "type": "windowed_test_launcher", | 390 "type": "windowed_test_launcher", |
382 }, | 391 }, |
383 "ui_chromeos_unittests": { | 392 "ui_chromeos_unittests": { |
384 "label": "//ui/chromeos:ui_chromeos_unittests", | 393 "label": "//ui/chromeos:ui_chromeos_unittests", |
385 "type": "unknown", | 394 "type": "unknown", |
386 }, | 395 }, |
387 "ui_touch_selection_unittests": { | 396 "ui_touch_selection_unittests": { |
388 "label": "//ui/touch_selection:ui_touch_selection_unittests", | 397 "label": "//ui/touch_selection:ui_touch_selection_unittests", |
(...skipping 21 matching lines...) Expand all Loading... |
410 }, | 419 }, |
411 "wm_unittests": { | 420 "wm_unittests": { |
412 "label": "//ui/wm:wm_unittests", | 421 "label": "//ui/wm:wm_unittests", |
413 "type": "windowed_test_launcher", | 422 "type": "windowed_test_launcher", |
414 }, | 423 }, |
415 "wtf_unittests": { | 424 "wtf_unittests": { |
416 "label": "//third_party/WebKit/public:wtf_unittests", | 425 "label": "//third_party/WebKit/public:wtf_unittests", |
417 "type": "unknown", | 426 "type": "unknown", |
418 }, | 427 }, |
419 } | 428 } |
OLD | NEW |