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 'variables': { | 10 'variables': { |
(...skipping 14 matching lines...) Expand all Loading... |
25 ['mojom_variant=="none"', { | 25 ['mojom_variant=="none"', { |
26 'mojom_output_languages%': 'c++,javascript,java', | 26 'mojom_output_languages%': 'c++,javascript,java', |
27 }, { | 27 }, { |
28 'mojom_output_languages%': 'c++', | 28 'mojom_output_languages%': 'c++', |
29 }], | 29 }], |
30 ['for_blink=="true"', { | 30 ['for_blink=="true"', { |
31 'mojom_generator_wtf_arg%': [ | 31 'mojom_generator_wtf_arg%': [ |
32 '--for_blink', | 32 '--for_blink', |
33 ], | 33 ], |
34 'wtf_dependencies%': [ | 34 'wtf_dependencies%': [ |
35 'mojo_public.gyp:mojo_cpp_bindings_wtf_support', | 35 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings_wtf_support', |
36 '../third_party/WebKit/Source/wtf/wtf.gyp:wtf', | 36 '<(DEPTH)/third_party/WebKit/Source/wtf/wtf.gyp:wtf', |
37 ], | 37 ], |
38 }, { | 38 }, { |
39 'mojom_generator_wtf_arg%': [], | 39 'mojom_generator_wtf_arg%': [], |
40 'wtf_dependencies%': [], | 40 'wtf_dependencies%': [], |
41 }], | 41 }], |
42 ], | 42 ], |
43 }, | 43 }, |
44 # Given mojom files as inputs, generate sources. These sources will be | 44 # Given mojom files as inputs, generate sources. These sources will be |
45 # exported to another target (via dependent_settings) to be compiled. This | 45 # exported to another target (via dependent_settings) to be compiled. This |
46 # keeps code generation separate from compilation, allowing the same sources | 46 # keeps code generation separate from compilation, allowing the same sources |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 ], | 151 ], |
152 'additional_input_paths': [ | 152 'additional_input_paths': [ |
153 '<@(mojom_bindings_generator_sources)', | 153 '<@(mojom_bindings_generator_sources)', |
154 '<@(mojom_files)', | 154 '<@(mojom_files)', |
155 ], | 155 ], |
156 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], | 156 'mojom_generated_sources': [ '<@(mojom_generated_outputs)' ], |
157 }, | 157 }, |
158 } | 158 } |
159 }, | 159 }, |
160 } | 160 } |
OLD | NEW |