| 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)))
|
|
|