OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 |
| 7 action("precompile_templates") { |
| 8 sources = mojom_generator_sources |
| 9 sources += [ |
| 10 "$mojom_generator_root/generators/cpp_templates/enum_macros.tmpl", |
| 11 "$mojom_generator_root/generators/cpp_templates/interface_declaration.tmpl", |
| 12 "$mojom_generator_root/generators/cpp_templates/interface_definition.tmpl", |
| 13 "$mojom_generator_root/generators/cpp_templates/interface_macros.tmpl", |
| 14 "$mojom_generator_root/generators/cpp_templates/interface_proxy_declaration.
tmpl", |
| 15 "$mojom_generator_root/generators/cpp_templates/interface_request_validator_
declaration.tmpl", |
| 16 "$mojom_generator_root/generators/cpp_templates/interface_response_validator
_declaration.tmpl", |
| 17 "$mojom_generator_root/generators/cpp_templates/interface_stub_declaration.t
mpl", |
| 18 "$mojom_generator_root/generators/cpp_templates/module-internal.h.tmpl", |
| 19 "$mojom_generator_root/generators/cpp_templates/module.cc.tmpl", |
| 20 "$mojom_generator_root/generators/cpp_templates/module.h.tmpl", |
| 21 "$mojom_generator_root/generators/cpp_templates/struct_declaration.tmpl", |
| 22 "$mojom_generator_root/generators/cpp_templates/struct_definition.tmpl", |
| 23 "$mojom_generator_root/generators/cpp_templates/struct_macros.tmpl", |
| 24 "$mojom_generator_root/generators/cpp_templates/struct_serialization_declara
tion.tmpl", |
| 25 "$mojom_generator_root/generators/cpp_templates/struct_serialization_definit
ion.tmpl", |
| 26 "$mojom_generator_root/generators/cpp_templates/union_declaration.tmpl", |
| 27 "$mojom_generator_root/generators/cpp_templates/union_definition.tmpl", |
| 28 "$mojom_generator_root/generators/cpp_templates/union_serialization_declarat
ion.tmpl", |
| 29 "$mojom_generator_root/generators/cpp_templates/union_serialization_definiti
on.tmpl", |
| 30 "$mojom_generator_root/generators/cpp_templates/validation_macros.tmpl", |
| 31 "$mojom_generator_root/generators/cpp_templates/wrapper_class_declaration.tm
pl", |
| 32 "$mojom_generator_root/generators/cpp_templates/wrapper_class_definition.tmp
l", |
| 33 "$mojom_generator_root/generators/cpp_templates/wrapper_union_class_declarat
ion.tmpl", |
| 34 "$mojom_generator_root/generators/cpp_templates/wrapper_union_class_definiti
on.tmpl", |
| 35 "$mojom_generator_root/generators/java_templates/constant_definition.tmpl", |
| 36 "$mojom_generator_root/generators/java_templates/constants.java.tmpl", |
| 37 "$mojom_generator_root/generators/java_templates/data_types_definition.tmpl"
, |
| 38 "$mojom_generator_root/generators/java_templates/enum.java.tmpl", |
| 39 "$mojom_generator_root/generators/java_templates/enum_definition.tmpl", |
| 40 "$mojom_generator_root/generators/java_templates/header.java.tmpl", |
| 41 "$mojom_generator_root/generators/java_templates/interface.java.tmpl", |
| 42 "$mojom_generator_root/generators/java_templates/interface_definition.tmpl", |
| 43 "$mojom_generator_root/generators/java_templates/interface_internal.java.tmp
l", |
| 44 "$mojom_generator_root/generators/java_templates/struct.java.tmpl", |
| 45 "$mojom_generator_root/generators/java_templates/union.java.tmpl", |
| 46 "$mojom_generator_root/generators/js_templates/enum_definition.tmpl", |
| 47 "$mojom_generator_root/generators/js_templates/interface_definition.tmpl", |
| 48 "$mojom_generator_root/generators/js_templates/module.amd.tmpl", |
| 49 "$mojom_generator_root/generators/js_templates/module_definition.tmpl", |
| 50 "$mojom_generator_root/generators/js_templates/struct_definition.tmpl", |
| 51 "$mojom_generator_root/generators/js_templates/union_definition.tmpl", |
| 52 "$mojom_generator_root/generators/js_templates/validation_macros.tmpl", |
| 53 ] |
| 54 script = mojom_generator_script |
| 55 outputs = [ |
| 56 "$target_gen_dir/cpp_templates.zip", |
| 57 "$target_gen_dir/java_templates.zip", |
| 58 "$target_gen_dir/js_templates.zip", |
| 59 ] |
| 60 args = [ |
| 61 "--use_bundled_pylibs", |
| 62 "precompile", |
| 63 "-o", |
| 64 rebase_path(target_gen_dir), |
| 65 ] |
| 66 } |
OLD | NEW |