Chromium Code Reviews| Index: lib/dom/scripts/fremontcutbuilder.py |
| diff --git a/lib/dom/scripts/fremontcutbuilder.py b/lib/dom/scripts/fremontcutbuilder.py |
| index 28532b8ca80df030a90cb09279f012be38e8f9f6..3d29577c5b5f175a60f097e8e929b9440acb4948 100755 |
| --- a/lib/dom/scripts/fremontcutbuilder.py |
| +++ b/lib/dom/scripts/fremontcutbuilder.py |
| @@ -187,6 +187,10 @@ def main(): |
| 'xml', |
| ] |
| + ignored_idls = [ |
| + 'AbstractView.idl', |
| + ] |
| + |
| (idl_list_file, idl_list_file_name) = tempfile.mkstemp() |
| webcore_dir = os.path.join(current_dir, '..', '..', '..', |
| @@ -198,7 +202,7 @@ def main(): |
| for name in names: |
| file_name = os.path.join(dir_name, name) |
| (interface, ext) = os.path.splitext(file_name) |
| - if ext == '.idl' and not name.startswith('._'): |
|
Anton Muhin
2012/04/17 10:57:59
I am sure you thought about that, but is it safe t
|
| + if ext == '.idl' and name not in ignored_idls: |
| path = os.path.relpath(file_name, os.path.dirname(idl_list_file_name)) |
| os.write(idl_list_file, '%s\n' % path) |