OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 9 'variables': { |
10 'mojom_base_output_dir': | 10 'mojom_base_output_dir': |
(...skipping 18 matching lines...) Expand all Loading... |
29 'inputs': [ | 29 'inputs': [ |
30 '<@(mojom_bindings_generator_sources)', | 30 '<@(mojom_bindings_generator_sources)', |
31 '<@(mojom_files)', | 31 '<@(mojom_files)', |
32 ], | 32 ], |
33 'outputs': [ | 33 'outputs': [ |
34 '<@(mojom_generated_outputs)', | 34 '<@(mojom_generated_outputs)', |
35 ], | 35 ], |
36 'action': [ | 36 'action': [ |
37 'python', '<@(mojom_bindings_generator)', | 37 'python', '<@(mojom_bindings_generator)', |
38 '<@(mojom_files)', | 38 '<@(mojom_files)', |
39 '--use_chromium_bundled_pylibs', | 39 '--use_bundled_pylibs', |
40 '-d', '<(DEPTH)', | 40 '-d', '<(DEPTH)', |
41 '<@(mojom_import_args)', | 41 '<@(mojom_import_args)', |
42 '-o', '<(SHARED_INTERMEDIATE_DIR)', | 42 '-o', '<(SHARED_INTERMEDIATE_DIR)', |
43 '--java_output_directory=<(java_out_dir)', | 43 '--java_output_directory=<(java_out_dir)', |
44 ], | 44 ], |
45 'message': 'Generating Mojo bindings from <@(mojom_files)', | 45 'message': 'Generating Mojo bindings from <@(mojom_files)', |
46 } | 46 } |
47 ], | 47 ], |
48 # Prevent the generated sources from being injected into the "all" target by | 48 # Prevent the generated sources from being injected into the "all" target by |
49 # preventing the code generator from being directly depended on by the "all" | 49 # preventing the code generator from being directly depended on by the "all" |
(...skipping 21 matching lines...) Expand all Loading... |
71 '<(SHARED_INTERMEDIATE_DIR)', | 71 '<(SHARED_INTERMEDIATE_DIR)', |
72 ], | 72 ], |
73 'variables': { | 73 'variables': { |
74 'generated_src_dirs': [ | 74 'generated_src_dirs': [ |
75 '<(PRODUCT_DIR)/java_mojo/<(_target_name)/src', | 75 '<(PRODUCT_DIR)/java_mojo/<(_target_name)/src', |
76 ], | 76 ], |
77 }, | 77 }, |
78 } | 78 } |
79 }, | 79 }, |
80 } | 80 } |
OLD | NEW |