| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'variables': { | 6 'variables': { |
| 7 'output_dir': '<(SHARED_INTERMEDIATE_DIR)/mojom', | 7 'output_dir': '<(SHARED_INTERMEDIATE_DIR)/mojom', |
| 8 }, | 8 }, |
| 9 'rules': [ | 9 'rules': [ |
| 10 { | 10 { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 '-o', '<(output_dir)', | 35 '-o', '<(output_dir)', |
| 36 ], | 36 ], |
| 37 'message': 'Generating C++ from mojom <(RULE_INPUT_PATH)', | 37 'message': 'Generating C++ from mojom <(RULE_INPUT_PATH)', |
| 38 'process_outputs_as_sources': 1, | 38 'process_outputs_as_sources': 1, |
| 39 } | 39 } |
| 40 ], | 40 ], |
| 41 'include_dirs': [ | 41 'include_dirs': [ |
| 42 '<(DEPTH)', | 42 '<(DEPTH)', |
| 43 '<(SHARED_INTERMEDIATE_DIR)', | 43 '<(SHARED_INTERMEDIATE_DIR)', |
| 44 ], | 44 ], |
| 45 'direct_dependent_settings': { |
| 46 'include_dirs': [ |
| 47 '<(DEPTH)', |
| 48 '<(SHARED_INTERMEDIATE_DIR)', |
| 49 ], |
| 50 }, |
| 45 'hard_dependency': 1, | 51 'hard_dependency': 1, |
| 46 } | 52 } |
| OLD | NEW |