| 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 19 matching lines...) Expand all Loading... |
| 30 ['mojom_variant=="none"', { | 30 ['mojom_variant=="none"', { |
| 31 'mojom_output_languages%': 'c++,javascript,java', | 31 'mojom_output_languages%': 'c++,javascript,java', |
| 32 }, { | 32 }, { |
| 33 'mojom_output_languages%': 'c++', | 33 'mojom_output_languages%': 'c++', |
| 34 }], | 34 }], |
| 35 ['for_blink=="true"', { | 35 ['for_blink=="true"', { |
| 36 'mojom_generator_wtf_arg%': [ | 36 'mojom_generator_wtf_arg%': [ |
| 37 '--for_blink', | 37 '--for_blink', |
| 38 ], | 38 ], |
| 39 'wtf_dependencies%': [ | 39 'wtf_dependencies%': [ |
| 40 'mojo_public.gyp:mojo_cpp_bindings_wtf_support', | 40 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings_wtf_support', |
| 41 '../third_party/WebKit/Source/wtf/wtf.gyp:wtf', | 41 '<(DEPTH)/third_party/WebKit/Source/wtf/wtf.gyp:wtf', |
| 42 ], | 42 ], |
| 43 }, { | 43 }, { |
| 44 'mojom_generator_wtf_arg%': [], | 44 'mojom_generator_wtf_arg%': [], |
| 45 'wtf_dependencies%': [], | 45 'wtf_dependencies%': [], |
| 46 }], | 46 }], |
| 47 ], | 47 ], |
| 48 }, | 48 }, |
| 49 'actions': [ | 49 'actions': [ |
| 50 { | 50 { |
| 51 'variables': { | 51 'variables': { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 '<(PRODUCT_DIR)/java_mojo/<(_target_name)/src', | 145 '<(PRODUCT_DIR)/java_mojo/<(_target_name)/src', |
| 146 ], | 146 ], |
| 147 'additional_input_paths': [ | 147 'additional_input_paths': [ |
| 148 '<@(mojom_bindings_generator_sources)', | 148 '<@(mojom_bindings_generator_sources)', |
| 149 '<@(_sources)', | 149 '<@(_sources)', |
| 150 ], | 150 ], |
| 151 }, | 151 }, |
| 152 }, | 152 }, |
| 153 'hard_dependency': 1, | 153 'hard_dependency': 1, |
| 154 } | 154 } |
| OLD | NEW |