Chromium Code Reviews| 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 11 matching lines...) Expand all Loading... | |
| 22 'generators/cpp_templates/interface_proxy_declaration.tmpl', | 22 'generators/cpp_templates/interface_proxy_declaration.tmpl', |
| 23 'generators/cpp_templates/interface_request_validator_declaration.tm pl', | 23 'generators/cpp_templates/interface_request_validator_declaration.tm pl', |
| 24 'generators/cpp_templates/interface_response_validator_declaration.t mpl', | 24 'generators/cpp_templates/interface_response_validator_declaration.t mpl', |
| 25 'generators/cpp_templates/interface_stub_declaration.tmpl', | 25 'generators/cpp_templates/interface_stub_declaration.tmpl', |
| 26 'generators/cpp_templates/module.cc.tmpl', | 26 'generators/cpp_templates/module.cc.tmpl', |
| 27 'generators/cpp_templates/module.h.tmpl', | 27 'generators/cpp_templates/module.h.tmpl', |
| 28 'generators/cpp_templates/module-internal.h.tmpl', | 28 'generators/cpp_templates/module-internal.h.tmpl', |
| 29 'generators/cpp_templates/struct_declaration.tmpl', | 29 'generators/cpp_templates/struct_declaration.tmpl', |
| 30 'generators/cpp_templates/struct_definition.tmpl', | 30 'generators/cpp_templates/struct_definition.tmpl', |
| 31 'generators/cpp_templates/struct_macros.tmpl', | 31 'generators/cpp_templates/struct_macros.tmpl', |
| 32 'generators/cpp_templates/struct_serialization_declaration.tmpl', | |
|
Ken Rockot(use gerrit already)
2016/04/06 14:54:59
or this
| |
| 32 'generators/cpp_templates/struct_serialization_definition.tmpl', | 33 'generators/cpp_templates/struct_serialization_definition.tmpl', |
| 34 'generators/cpp_templates/union_declaration.tmpl', | |
| 35 'generators/cpp_templates/union_definition.tmpl', | |
| 36 'generators/cpp_templates/union_serialization_declaration.tmpl', | |
| 37 'generators/cpp_templates/union_serialization_definition.tmpl', | |
| 38 'generators/cpp_templates/validation_macros.tmpl', | |
| 33 'generators/cpp_templates/wrapper_class_declaration.tmpl', | 39 'generators/cpp_templates/wrapper_class_declaration.tmpl', |
| 34 'generators/cpp_templates/wrapper_class_definition.tmpl', | 40 'generators/cpp_templates/wrapper_class_definition.tmpl', |
| 41 'generators/cpp_templates/wrapper_union_class_declaration.tmpl', | |
| 42 'generators/cpp_templates/wrapper_union_class_definition.tmpl', | |
| 35 'generators/java_templates/constant_definition.tmpl', | 43 'generators/java_templates/constant_definition.tmpl', |
| 36 'generators/java_templates/constants.java.tmpl', | 44 'generators/java_templates/constants.java.tmpl', |
| 37 'generators/java_templates/data_types_definition.tmpl', | 45 'generators/java_templates/data_types_definition.tmpl', |
| 38 'generators/java_templates/enum_definition.tmpl', | 46 'generators/java_templates/enum_definition.tmpl', |
| 39 'generators/java_templates/enum.java.tmpl', | 47 'generators/java_templates/enum.java.tmpl', |
| 40 'generators/java_templates/header.java.tmpl', | 48 'generators/java_templates/header.java.tmpl', |
| 41 'generators/java_templates/interface_definition.tmpl', | 49 'generators/java_templates/interface_definition.tmpl', |
| 42 'generators/java_templates/interface_internal.java.tmpl', | 50 'generators/java_templates/interface_internal.java.tmpl', |
| 43 'generators/java_templates/interface.java.tmpl', | 51 'generators/java_templates/interface.java.tmpl', |
| 44 'generators/java_templates/struct.java.tmpl', | 52 'generators/java_templates/struct.java.tmpl', |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 61 '--use_bundled_pylibs', 'precompile', | 69 '--use_bundled_pylibs', 'precompile', |
| 62 '-o', '<(SHARED_INTERMEDIATE_DIR)/mojo/public/tools/bindings', | 70 '-o', '<(SHARED_INTERMEDIATE_DIR)/mojo/public/tools/bindings', |
| 63 ], | 71 ], |
| 64 } | 72 } |
| 65 ], | 73 ], |
| 66 'hard_dependency': 1, | 74 'hard_dependency': 1, |
| 67 }, | 75 }, |
| 68 ], | 76 ], |
| 69 } | 77 } |
| 70 | 78 |
| OLD | NEW |