| 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
| 7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
| 8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
| 9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
| 10 | 10 |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", | 1000 "label": "//chrome/android/webapk/libs/client:webapk_client_junit_tests", |
| 1001 "type": "junit_test", | 1001 "type": "junit_test", |
| 1002 }, | 1002 }, |
| 1003 "webapk_shell_apk_junit_tests": { | 1003 "webapk_shell_apk_junit_tests": { |
| 1004 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", | 1004 "label": "//chrome/android/webapk/shell_apk:webapk_shell_apk_junit_tests", |
| 1005 "type": "junit_test", | 1005 "type": "junit_test", |
| 1006 }, | 1006 }, |
| 1007 "webkit_layout_tests": { | 1007 "webkit_layout_tests": { |
| 1008 "label": "//:webkit_layout_tests", | 1008 "label": "//:webkit_layout_tests", |
| 1009 "type": "script", | 1009 "type": "script", |
| 1010 "script": "//testing/scripts/run_telemetry_as_googletest.py", | 1010 "script": "//testing/scripts/run_isolated_script_test.py", |
| 1011 "args": [ | 1011 "args": [ |
| 1012 "--xvfb", | 1012 "--xvfb", |
| 1013 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", | 1013 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", |
| 1014 "--clobber-old-results", |
| 1015 "--debug-rwt-logging", |
| 1016 "--no-show-results", |
| 1017 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", |
| 1018 ], |
| 1019 }, |
| 1020 "webkit_layout_tests_exparchive": { |
| 1021 "label": "//:webkit_layout_tests_exparchive", |
| 1022 "type": "script", |
| 1023 "script": "//testing/scripts/run_isolated_script_test.py", |
| 1024 "args": [ |
| 1025 "--xvfb", |
| 1026 "../../third_party/WebKit/Tools/Scripts/run-webkit-tests", |
| 1014 "--clobber-old-results", | 1027 "--clobber-old-results", |
| 1015 "--no-show-results", | 1028 "--no-show-results", |
| 1016 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", | 1029 "--results-directory", "${ISOLATED_OUTDIR}/layout-test-results", |
| 1017 ], | 1030 ], |
| 1018 }, | 1031 }, |
| 1019 "webkit_unit_tests": { | 1032 "webkit_unit_tests": { |
| 1020 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", | 1033 "label": "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 1021 "type": "console_test_launcher", | 1034 "type": "console_test_launcher", |
| 1022 }, | 1035 }, |
| 1023 "wm_unittests": { | 1036 "wm_unittests": { |
| 1024 "label": "//ui/wm:wm_unittests", | 1037 "label": "//ui/wm:wm_unittests", |
| 1025 "type": "windowed_test_launcher", | 1038 "type": "windowed_test_launcher", |
| 1026 }, | 1039 }, |
| 1027 "wtf_unittests": { | 1040 "wtf_unittests": { |
| 1028 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1041 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 1029 "type": "console_test_launcher", | 1042 "type": "console_test_launcher", |
| 1030 }, | 1043 }, |
| 1031 } | 1044 } |
| OLD | NEW |