| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Paths should be absolute so this file can be imported from anywhere. | 5 # Paths should be absolute so this file can be imported from anywhere. |
| 6 code_generator_template_files = get_path_info([ | 6 code_generator_template_files = get_path_info([ |
| 7 "attributes.cpp.tmpl", | 7 "attributes.cpp.tmpl", |
| 8 "callback_function.cpp.tmpl", | 8 "callback_function.cpp.tmpl", |
| 9 "callback_function.h.tmpl", | 9 "callback_function.h.tmpl", |
| 10 "callback_interface.cpp.tmpl", | 10 "callback_interface.cpp.tmpl", |
| 11 "callback_interface.h.tmpl", | 11 "callback_interface.h.tmpl", |
| 12 "constants.cpp.tmpl", | 12 "constants.cpp.tmpl", |
| 13 "utilities.cpp.tmpl", | 13 "utilities.cpp.tmpl", |
| 14 "copyright_block.txt", | 14 "copyright_block.txt", |
| 15 "dictionary_impl.cpp.tmpl", | 15 "dictionary_impl.cpp.tmpl", |
| 16 "dictionary_impl.h.tmpl", | 16 "dictionary_impl.h.tmpl", |
| 17 "dictionary_v8.cpp.tmpl", | 17 "dictionary_v8.cpp.tmpl", |
| 18 "dictionary_v8.h.tmpl", | 18 "dictionary_v8.h.tmpl", |
| 19 "interface_base.cpp.tmpl", | 19 "interface_base.cpp.tmpl", |
| 20 "interface.cpp.tmpl", | 20 "interface.cpp.tmpl", |
| 21 "interface.h.tmpl", | 21 "interface.h.tmpl", |
| 22 "methods.cpp.tmpl", | 22 "methods.cpp.tmpl", |
| 23 "partial_interface.cpp.tmpl", | 23 "partial_interface.cpp.tmpl", |
| 24 "partial_interface.h.tmpl", | 24 "partial_interface.h.tmpl", |
| 25 "union_container.cpp.tmpl", | 25 "union_container.cpp.tmpl", |
| 26 "union_container.h.tmpl", | 26 "union_container.h.tmpl", |
| 27 "web_module_interface.cpp.tmpl", |
| 27 ], | 28 ], |
| 28 "abspath") | 29 "abspath") |
| OLD | NEW |