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

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

Issue 1884423002: IDL bindings: Avoid extended attributes leaking onto merged interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove TestPartialInterface4.idl (which doesn't exist) from list. Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2011 Google Inc. All rights reserved. 1 # Copyright (C) 2011 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions 4 # modification, are permitted provided that the following conditions
5 # are met: 5 # are met:
6 # 1. Redistributions of source code must retain the above copyright 6 # 1. Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # 2. Redistributions in binary form must reproduce the above copyright 8 # 2. Redistributions in binary form must reproduce the above copyright
9 # notice, this list of conditions and the following disclaimer in the 9 # notice, this list of conditions and the following disclaimer in the
10 # documentation and/or other materials provided with the distribution. 10 # documentation and/or other materials provided with the distribution.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 TBR=(someone in Source/bindings/OWNERS or WATCHLISTS:bindings) 62 TBR=(someone in Source/bindings/OWNERS or WATCHLISTS:bindings)
63 """ 63 """
64 64
65 DEPENDENCY_IDL_FILES = frozenset([ 65 DEPENDENCY_IDL_FILES = frozenset([
66 'TestImplements.idl', 66 'TestImplements.idl',
67 'TestImplements2.idl', 67 'TestImplements2.idl',
68 'TestImplements3.idl', 68 'TestImplements3.idl',
69 'TestPartialInterface.idl', 69 'TestPartialInterface.idl',
70 'TestPartialInterface2.idl', 70 'TestPartialInterface2.idl',
71 'TestPartialInterface3.idl', 71 'TestPartialInterface3.idl',
72 'TestPartialInterface4.idl', 72 'TestInterface2Partial.idl',
73 'TestInterface2Partial2.idl',
73 ]) 74 ])
74 75
75 # core/inspector/InspectorInstrumentation.idl is not a valid Blink IDL. 76 # core/inspector/InspectorInstrumentation.idl is not a valid Blink IDL.
76 NON_BLINK_IDL_FILES = frozenset([ 77 NON_BLINK_IDL_FILES = frozenset([
77 'InspectorInstrumentation.idl', 78 'InspectorInstrumentation.idl',
78 ]) 79 ])
79 80
80 COMPONENT_DIRECTORY = frozenset(['core', 'modules']) 81 COMPONENT_DIRECTORY = frozenset(['core', 'modules'])
81 82
82 test_input_directory = os.path.join(source_path, 'bindings', 'tests', 'idls') 83 test_input_directory = os.path.join(source_path, 'bindings', 'tests', 'idls')
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 346
346 347
347 def run_bindings_tests(reset_results, verbose): 348 def run_bindings_tests(reset_results, verbose):
348 # Generate output into the reference directory if resetting results, or 349 # Generate output into the reference directory if resetting results, or
349 # a temp directory if not. 350 # a temp directory if not.
350 if reset_results: 351 if reset_results:
351 print 'Resetting results' 352 print 'Resetting results'
352 return bindings_tests(reference_directory, verbose) 353 return bindings_tests(reference_directory, verbose)
353 with TemporaryDirectory() as temp_dir: 354 with TemporaryDirectory() as temp_dir:
354 return bindings_tests(temp_dir, verbose) 355 return bindings_tests(temp_dir, verbose)
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698