| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ], | 67 ], |
| 68 'message': 'Generating Mojo bindings from <@(mojom_files)', | 68 'message': 'Generating Mojo bindings from <@(mojom_files)', |
| 69 } | 69 } |
| 70 ], | 70 ], |
| 71 'conditions': [ | 71 'conditions': [ |
| 72 ['require_interface_bindings==1', { | 72 ['require_interface_bindings==1', { |
| 73 'dependencies': [ | 73 'dependencies': [ |
| 74 '<(DEPTH)/base/base.gyp:base', |
| 74 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_interface_bindings_gener
ation', | 75 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_interface_bindings_gener
ation', |
| 75 ], | 76 ], |
| 76 }], | 77 }], |
| 77 ], | 78 ], |
| 78 # Prevent the generated sources from being injected into the "all" target by | 79 # Prevent the generated sources from being injected into the "all" target by |
| 79 # preventing the code generator from being directly depended on by the "all" | 80 # preventing the code generator from being directly depended on by the "all" |
| 80 # target. | 81 # target. |
| 81 'suppress_wildcard': '1', | 82 'suppress_wildcard': '1', |
| 82 'hard_dependency': '1', | 83 'hard_dependency': '1', |
| 83 'direct_dependent_settings': { | 84 'direct_dependent_settings': { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 111 ], | 112 ], |
| 112 'additional_input_paths': [ | 113 'additional_input_paths': [ |
| 113 '<@(mojom_bindings_generator_sources)', | 114 '<@(mojom_bindings_generator_sources)', |
| 114 '<@(mojom_files)', | 115 '<@(mojom_files)', |
| 115 ], | 116 ], |
| 116 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], | 117 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], |
| 117 }, | 118 }, |
| 118 } | 119 } |
| 119 }, | 120 }, |
| 120 } | 121 } |
| OLD | NEW |