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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 '<@(mojom_generated_outputs)', | 57 '<@(mojom_generated_outputs)', |
58 ], | 58 ], |
59 'action': [ | 59 'action': [ |
60 'python', '<@(mojom_bindings_generator)', | 60 'python', '<@(mojom_bindings_generator)', |
61 '<@(mojom_files)', | 61 '<@(mojom_files)', |
62 '--use_bundled_pylibs', | 62 '--use_bundled_pylibs', |
63 '-d', '<(DEPTH)', | 63 '-d', '<(DEPTH)', |
64 '<@(mojom_import_args)', | 64 '<@(mojom_import_args)', |
65 '-o', '<(SHARED_INTERMEDIATE_DIR)', | 65 '-o', '<(SHARED_INTERMEDIATE_DIR)', |
66 '--java_output_directory=<(java_out_dir)', | 66 '--java_output_directory=<(java_out_dir)', |
67 '--dart_mojo_root=//third_party/mojo/src', | |
68 ], | 67 ], |
69 'message': 'Generating Mojo bindings from <@(mojom_files)', | 68 'message': 'Generating Mojo bindings from <@(mojom_files)', |
70 } | 69 } |
71 ], | 70 ], |
72 'conditions': [ | 71 'conditions': [ |
73 ['require_interface_bindings==1', { | 72 ['require_interface_bindings==1', { |
74 'dependencies': [ | 73 'dependencies': [ |
75 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_interface_bindings_gener
ation', | 74 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_interface_bindings_gener
ation', |
76 ], | 75 ], |
77 }], | 76 }], |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 ], | 111 ], |
113 'additional_input_paths': [ | 112 'additional_input_paths': [ |
114 '<@(mojom_bindings_generator_sources)', | 113 '<@(mojom_bindings_generator_sources)', |
115 '<@(mojom_files)', | 114 '<@(mojom_files)', |
116 ], | 115 ], |
117 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], | 116 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], |
118 }, | 117 }, |
119 } | 118 } |
120 }, | 119 }, |
121 } | 120 } |
OLD | NEW |