OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 '../../../mojom_bindings_generator_variables.gypi', | 7 '../../../mojom_bindings_generator_variables.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 22 matching lines...) Expand all Loading... |
33 'generators/cpp_templates/struct_macros.tmpl', | 33 'generators/cpp_templates/struct_macros.tmpl', |
34 'generators/cpp_templates/struct_serialization_declaration.tmpl', | 34 'generators/cpp_templates/struct_serialization_declaration.tmpl', |
35 'generators/cpp_templates/struct_serialization_definition.tmpl', | 35 'generators/cpp_templates/struct_serialization_definition.tmpl', |
36 'generators/cpp_templates/union_declaration.tmpl', | 36 'generators/cpp_templates/union_declaration.tmpl', |
37 'generators/cpp_templates/union_definition.tmpl', | 37 'generators/cpp_templates/union_definition.tmpl', |
38 'generators/cpp_templates/union_serialization_declaration.tmpl', | 38 'generators/cpp_templates/union_serialization_declaration.tmpl', |
39 'generators/cpp_templates/union_serialization_definition.tmpl', | 39 'generators/cpp_templates/union_serialization_definition.tmpl', |
40 'generators/cpp_templates/validation_macros.tmpl', | 40 'generators/cpp_templates/validation_macros.tmpl', |
41 'generators/cpp_templates/wrapper_class_declaration.tmpl', | 41 'generators/cpp_templates/wrapper_class_declaration.tmpl', |
42 'generators/cpp_templates/wrapper_class_definition.tmpl', | 42 'generators/cpp_templates/wrapper_class_definition.tmpl', |
| 43 'generators/cpp_templates/wrapper_class_template_definition.tmpl', |
43 'generators/cpp_templates/wrapper_union_class_declaration.tmpl', | 44 'generators/cpp_templates/wrapper_union_class_declaration.tmpl', |
44 'generators/cpp_templates/wrapper_union_class_definition.tmpl', | 45 'generators/cpp_templates/wrapper_union_class_definition.tmpl', |
| 46 'generators/cpp_templates/wrapper_union_class_template_definition.tm
pl', |
45 'generators/java_templates/constant_definition.tmpl', | 47 'generators/java_templates/constant_definition.tmpl', |
46 'generators/java_templates/constants.java.tmpl', | 48 'generators/java_templates/constants.java.tmpl', |
47 'generators/java_templates/data_types_definition.tmpl', | 49 'generators/java_templates/data_types_definition.tmpl', |
48 'generators/java_templates/enum_definition.tmpl', | 50 'generators/java_templates/enum_definition.tmpl', |
49 'generators/java_templates/enum.java.tmpl', | 51 'generators/java_templates/enum.java.tmpl', |
50 'generators/java_templates/header.java.tmpl', | 52 'generators/java_templates/header.java.tmpl', |
51 'generators/java_templates/interface_definition.tmpl', | 53 'generators/java_templates/interface_definition.tmpl', |
52 'generators/java_templates/interface_internal.java.tmpl', | 54 'generators/java_templates/interface_internal.java.tmpl', |
53 'generators/java_templates/interface.java.tmpl', | 55 'generators/java_templates/interface.java.tmpl', |
54 'generators/java_templates/struct.java.tmpl', | 56 'generators/java_templates/struct.java.tmpl', |
(...skipping 16 matching lines...) Expand all Loading... |
71 '--use_bundled_pylibs', 'precompile', | 73 '--use_bundled_pylibs', 'precompile', |
72 '-o', '<(SHARED_INTERMEDIATE_DIR)/mojo/public/tools/bindings', | 74 '-o', '<(SHARED_INTERMEDIATE_DIR)/mojo/public/tools/bindings', |
73 ], | 75 ], |
74 } | 76 } |
75 ], | 77 ], |
76 'hard_dependency': 1, | 78 'hard_dependency': 1, |
77 }, | 79 }, |
78 ], | 80 ], |
79 } | 81 } |
80 | 82 |
OLD | NEW |