| 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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 "--test-launcher-print-test-stdio=always", | 896 "--test-launcher-print-test-stdio=always", |
| 897 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*", | 897 "--gtest_filter=TabCapturePerformanceTest.*:CastV2PerformanceTest.*", |
| 898 "--test-launcher-jobs=1", | 898 "--test-launcher-jobs=1", |
| 899 "--enable-gpu" | 899 "--enable-gpu" |
| 900 ], | 900 ], |
| 901 }, | 901 }, |
| 902 "mus_ime_unittests": { | 902 "mus_ime_unittests": { |
| 903 "label": "//services/ui/ime:mus_ime_unittests", | 903 "label": "//services/ui/ime:mus_ime_unittests", |
| 904 "type": "windowed_test_launcher", | 904 "type": "windowed_test_launcher", |
| 905 }, | 905 }, |
| 906 "native_theme_unittests": { |
| 907 "label": "//ui/native_theme:native_theme_unittests", |
| 908 "type": "windowed_test_launcher", |
| 909 }, |
| 906 "ui_android_unittests": { | 910 "ui_android_unittests": { |
| 907 "label": "//ui/android:ui_android_unittests", | 911 "label": "//ui/android:ui_android_unittests", |
| 908 "type": "console_test_launcher", | 912 "type": "console_test_launcher", |
| 909 }, | 913 }, |
| 910 "ui_base_unittests": { | 914 "ui_base_unittests": { |
| 911 "label": "//ui/base:ui_base_unittests", | 915 "label": "//ui/base:ui_base_unittests", |
| 912 "type": "windowed_test_launcher", | 916 "type": "windowed_test_launcher", |
| 913 }, | 917 }, |
| 914 "ui_chromeos_unittests": { | 918 "ui_chromeos_unittests": { |
| 915 "label": "//ui/chromeos:ui_chromeos_unittests", | 919 "label": "//ui/chromeos:ui_chromeos_unittests", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 }, | 990 }, |
| 987 "wm_unittests": { | 991 "wm_unittests": { |
| 988 "label": "//ui/wm:wm_unittests", | 992 "label": "//ui/wm:wm_unittests", |
| 989 "type": "windowed_test_launcher", | 993 "type": "windowed_test_launcher", |
| 990 }, | 994 }, |
| 991 "wtf_unittests": { | 995 "wtf_unittests": { |
| 992 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 996 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 993 "type": "console_test_launcher", | 997 "type": "console_test_launcher", |
| 994 }, | 998 }, |
| 995 } | 999 } |
| OLD | NEW |