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 |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
369 "type": "console_test_launcher", | 369 "type": "console_test_launcher", |
370 }, | 370 }, |
371 "dbus_unittests": { | 371 "dbus_unittests": { |
372 "label": "//dbus:dbus_unittests", | 372 "label": "//dbus:dbus_unittests", |
373 "type": "windowed_test_launcher", | 373 "type": "windowed_test_launcher", |
374 }, | 374 }, |
375 "device_unittests": { | 375 "device_unittests": { |
376 "label": "//device:device_unittests", | 376 "label": "//device:device_unittests", |
377 "type": "console_test_launcher", | 377 "type": "console_test_launcher", |
378 }, | 378 }, |
379 "devtools_eslint": { | |
380 "label": "//third_party/WebKit/Source/devtools:eslint", | |
381 "type": "script", | |
382 "script": "//testing/scripts/run_devtools_eslint.py", | |
Dirk Pranke
2016/11/11 02:11:20
I think you want to add the path to the actual scr
chenwilliam
2016/12/06 18:22:09
Done.
| |
383 }, | |
379 "display_unittests": { | 384 "display_unittests": { |
380 "label": "//ui/display:display_unittests", | 385 "label": "//ui/display:display_unittests", |
381 "type": "console_test_launcher", | 386 "type": "console_test_launcher", |
382 }, | 387 }, |
383 "display_service_unittests": { | 388 "display_service_unittests": { |
384 "label": "//services/ui/display:display_service_unittests", | 389 "label": "//services/ui/display:display_service_unittests", |
385 "type": "console_test_launcher", | 390 "type": "console_test_launcher", |
386 }, | 391 }, |
387 "events_unittests": { | 392 "events_unittests": { |
388 "label": "//ui/events:events_unittests", | 393 "label": "//ui/events:events_unittests", |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
747 "type": "script", | 752 "type": "script", |
748 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", | 753 "script": "//testing/scripts/run_gpu_integration_test_as_googletest.py", |
749 "args": [ | 754 "args": [ |
750 "../../content/test/gpu/run_gpu_integration_test.py", | 755 "../../content/test/gpu/run_gpu_integration_test.py", |
751 ], | 756 ], |
752 }, | 757 }, |
753 "telemetry_gpu_test": { | 758 "telemetry_gpu_test": { |
754 "label": "//chrome/test:telemetry_gpu_test", | 759 "label": "//chrome/test:telemetry_gpu_test", |
755 "type": "script", | 760 "type": "script", |
756 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py", | 761 "script": "//testing/scripts/run_telemetry_benchmark_as_googletest.py", |
757 "args": [ | 762 "args": [ |
Dirk Pranke
2016/11/11 02:11:20
i.e., here.
| |
758 "../../content/test/gpu/run_gpu_test.py", | 763 "../../content/test/gpu/run_gpu_test.py", |
759 ], | 764 ], |
760 }, | 765 }, |
761 "telemetry_gpu_unittests": { | 766 "telemetry_gpu_unittests": { |
762 "label": "//chrome/test:telemetry_gpu_unittests", | 767 "label": "//chrome/test:telemetry_gpu_unittests", |
763 "type": "script", | 768 "type": "script", |
764 "script": "//testing/scripts/run_telemetry_as_googletest.py", | 769 "script": "//testing/scripts/run_telemetry_as_googletest.py", |
765 "args": [ | 770 "args": [ |
766 "../../content/test/gpu/run_unittests.py", | 771 "../../content/test/gpu/run_unittests.py", |
767 "-v", | 772 "-v", |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
875 }, | 880 }, |
876 "wm_unittests": { | 881 "wm_unittests": { |
877 "label": "//ui/wm:wm_unittests", | 882 "label": "//ui/wm:wm_unittests", |
878 "type": "windowed_test_launcher", | 883 "type": "windowed_test_launcher", |
879 }, | 884 }, |
880 "wtf_unittests": { | 885 "wtf_unittests": { |
881 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 886 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
882 "type": "console_test_launcher", | 887 "type": "console_test_launcher", |
883 }, | 888 }, |
884 } | 889 } |
OLD | NEW |