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 16 matching lines...) Expand all Loading... |
27 'generators/cpp_templates/module.cc.tmpl', | 27 'generators/cpp_templates/module.cc.tmpl', |
28 'generators/cpp_templates/module.h.tmpl', | 28 'generators/cpp_templates/module.h.tmpl', |
29 'generators/cpp_templates/module-internal.h.tmpl', | 29 'generators/cpp_templates/module-internal.h.tmpl', |
30 'generators/cpp_templates/struct_data_view_declaration.tmpl', | 30 'generators/cpp_templates/struct_data_view_declaration.tmpl', |
31 'generators/cpp_templates/struct_data_view_definition.tmpl', | 31 'generators/cpp_templates/struct_data_view_definition.tmpl', |
32 'generators/cpp_templates/struct_declaration.tmpl', | 32 'generators/cpp_templates/struct_declaration.tmpl', |
33 'generators/cpp_templates/struct_definition.tmpl', | 33 'generators/cpp_templates/struct_definition.tmpl', |
34 'generators/cpp_templates/struct_macros.tmpl', | 34 'generators/cpp_templates/struct_macros.tmpl', |
35 'generators/cpp_templates/struct_serialization_declaration.tmpl', | 35 'generators/cpp_templates/struct_serialization_declaration.tmpl', |
36 'generators/cpp_templates/struct_serialization_definition.tmpl', | 36 'generators/cpp_templates/struct_serialization_definition.tmpl', |
| 37 'generators/cpp_templates/union_data_view_declaration.tmpl', |
37 'generators/cpp_templates/union_declaration.tmpl', | 38 'generators/cpp_templates/union_declaration.tmpl', |
38 'generators/cpp_templates/union_definition.tmpl', | 39 'generators/cpp_templates/union_definition.tmpl', |
39 'generators/cpp_templates/union_serialization_declaration.tmpl', | 40 'generators/cpp_templates/union_serialization_declaration.tmpl', |
40 'generators/cpp_templates/union_serialization_definition.tmpl', | 41 'generators/cpp_templates/union_serialization_definition.tmpl', |
41 'generators/cpp_templates/validation_macros.tmpl', | 42 'generators/cpp_templates/validation_macros.tmpl', |
42 'generators/cpp_templates/wrapper_class_declaration.tmpl', | 43 'generators/cpp_templates/wrapper_class_declaration.tmpl', |
43 'generators/cpp_templates/wrapper_class_definition.tmpl', | 44 'generators/cpp_templates/wrapper_class_definition.tmpl', |
44 'generators/cpp_templates/wrapper_class_template_definition.tmpl', | 45 'generators/cpp_templates/wrapper_class_template_definition.tmpl', |
45 'generators/cpp_templates/wrapper_union_class_declaration.tmpl', | 46 'generators/cpp_templates/wrapper_union_class_declaration.tmpl', |
46 'generators/cpp_templates/wrapper_union_class_definition.tmpl', | 47 'generators/cpp_templates/wrapper_union_class_definition.tmpl', |
(...skipping 27 matching lines...) Expand all Loading... |
74 '--use_bundled_pylibs', 'precompile', | 75 '--use_bundled_pylibs', 'precompile', |
75 '-o', '<(SHARED_INTERMEDIATE_DIR)/mojo/public/tools/bindings', | 76 '-o', '<(SHARED_INTERMEDIATE_DIR)/mojo/public/tools/bindings', |
76 ], | 77 ], |
77 } | 78 } |
78 ], | 79 ], |
79 'hard_dependency': 1, | 80 'hard_dependency': 1, |
80 }, | 81 }, |
81 ], | 82 ], |
82 } | 83 } |
83 | 84 |
OLD | NEW |