Chromium Code Reviews| 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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 968 "type": "console_test_launcher", | 968 "type": "console_test_launcher", |
| 969 }, | 969 }, |
| 970 "webapk_client_junit_tests": { | 970 "webapk_client_junit_tests": { |
| 971 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", | 971 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", |
| 972 "type": "junit_test", | 972 "type": "junit_test", |
| 973 }, | 973 }, |
| 974 "webapk_shell_apk_junit_tests": { | 974 "webapk_shell_apk_junit_tests": { |
| 975 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", | 975 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", |
| 976 "type": "junit_test", | 976 "type": "junit_test", |
| 977 }, | 977 }, |
| 978 "webkit_layout_tests": { | 978 "some_webkit_layout_tests": { |
| 979 "label": "//:webkit_layout_tests", | 979 "label": "//:some_webkit_layout_tests", |
| 980 "type": "script", | 980 "type": "script", |
| 981 "script": "//testing/scripts/run_telemetry_as_googletest.py", | 981 "script": "//testing/scripts/run_isolated_script_test.py", |
| 982 "args": [ | 982 "args": [ |
| 983 "--xvfb", | 983 "--xvfb", |
| 984 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", | 984 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", |
| 985 "--clobber-old-results", | |
| 986 "--debug-rwt-logging", | |
| 987 "--no-show-results", | |
| 988 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", | |
| 989 ], | |
| 990 }, | |
| 991 "webkit_layout_tests_exparchive": { | |
| 992 "label": "//:webkit_layout_tests_exparchive", | |
| 993 "type": "script", | |
| 994 "script": "//testing/scripts/run_isolated_script_test.py", | |
|
qyearsley
2017/01/13 01:09:11
Ah, so with this set-up, in the chromium_tests rec
qyearsley
2017/01/13 01:12:03
You just answered my question on the thread :-)
| |
| 995 "args": [ | |
| 996 "--xvfb", | |
| 997 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", | |
| 985 "--clobber-old-results", | 998 "--clobber-old-results", |
| 986 "--no-show-results", | 999 "--no-show-results", |
| 987 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", | 1000 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", |
| 988 ], | 1001 ], |
| 989 }, | 1002 }, |
| 990 "webkit_unit_tests": { | 1003 "webkit_unit_tests": { |
| 991 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", | 1004 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 992 "type": "console_test_launcher", | 1005 "type": "console_test_launcher", |
| 993 }, | 1006 }, |
| 994 "wm_unittests": { | 1007 "wm_unittests": { |
| 995 "label": "//ui/wm:wm_unittests", | 1008 "label": "//ui/wm:wm_unittests", |
| 996 "type": "windowed_test_launcher", | 1009 "type": "windowed_test_launcher", |
| 997 }, | 1010 }, |
| 998 "wtf_unittests": { | 1011 "wtf_unittests": { |
| 999 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1012 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 1000 "type": "console_test_launcher", | 1013 "type": "console_test_launcher", |
| 1001 }, | 1014 }, |
| 1002 } | 1015 } |
| OLD | NEW |