Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1499)

Unified Diff: testing/scripts/webkit_lint.py

Issue 988693005: Chromium roll (https://codereview.chromium.org/976353002) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fixed bad android build patch Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/commit_queue/config.json ('k') | testing/scripts/webkit_python_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/webkit_lint.py
diff --git a/testing/scripts/webview_licenses.py b/testing/scripts/webkit_lint.py
similarity index 76%
copy from testing/scripts/webview_licenses.py
copy to testing/scripts/webkit_lint.py
index 255c62e993111f82f0d47d2445ed89312ea28c16..eeb9367099964777779197dcd86d2e564d08df24 100755
--- a/testing/scripts/webview_licenses.py
+++ b/testing/scripts/webkit_lint.py
@@ -14,18 +14,18 @@ import common
def main_run(args):
with common.temporary_file() as tempfile_path:
rc = common.run_command([
- os.path.join(common.SRC_DIR, 'android_webview', 'tools',
- 'webview_licenses.py'),
- 'scan',
+ sys.executable,
+ os.path.join(common.SRC_DIR, 'third_party', 'WebKit',
+ 'Tools', 'Scripts', 'lint-test-expectations'),
'--json', tempfile_path
])
with open(tempfile_path) as f:
- results = json.load(f)
+ failures = json.load(f)
json.dump({
'valid': True,
- 'failures': results,
+ 'failures': failures,
}, args.output)
return rc
« no previous file with comments | « testing/commit_queue/config.json ('k') | testing/scripts/webkit_python_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698