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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/bindings/main.py

Issue 2014063002: Run format-webkit on webkitpy code (without string conversion). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/bindings/main.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/bindings/main.py b/third_party/WebKit/Tools/Scripts/webkitpy/bindings/main.py
index 07bb996a0493002afc2c4e2ee237dbb616ed156a..e5b285972893925803663d54ec30d5dceb740b67 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/bindings/main.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/bindings/main.py
@@ -311,9 +311,9 @@ def bindings_tests(output_directory, verbose):
input_directory = os.path.join(test_input_directory, component)
for filename in os.listdir(input_directory):
if (filename.endswith('.idl') and
- # Dependencies aren't built
- # (they are used by the dependent)
- filename not in DEPENDENCY_IDL_FILES):
+ # Dependencies aren't built
+ # (they are used by the dependent)
+ filename not in DEPENDENCY_IDL_FILES):
idl_filenames.append(
os.path.realpath(
os.path.join(input_directory, filename)))

Powered by Google App Engine
This is Rietveld 408576698