| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'input_method_out_dir': | 7 'input_method_out_dir': |
| 8 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/chromeos/input_method', | 8 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/chromeos/input_method', |
| 9 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | |
| 10 }, | 9 }, |
| 11 'targets': [ | 10 'targets': [ |
| 12 { | 11 { |
| 13 'target_name': 'gencode', | 12 'target_name': 'gencode', |
| 14 'type': 'none', | 13 'type': 'none', |
| 15 'actions': [ | 14 'actions': [ |
| 16 { | 15 { |
| 17 'inputs': [ | 16 'inputs': [ |
| 18 'ibus_input_methods.txt', | 17 'input_methods.txt', |
| 19 'gen_ibus_input_methods.py', | 18 'gen_input_methods.py', |
| 20 ], | 19 ], |
| 21 'outputs': [ | 20 'outputs': [ |
| 22 '<(input_method_out_dir)/ibus_input_methods.h', | 21 '<(input_method_out_dir)/input_methods.h', |
| 23 ], | 22 ], |
| 24 'action_name': 'gen_ibus_input_methods', | 23 'action_name': 'gen_input_methods', |
| 25 'action': [ | 24 'action': [ |
| 26 'python', | 25 'python', |
| 27 'gen_ibus_input_methods.py', | 26 'gen_input_methods.py', |
| 28 'ibus_input_methods.txt', | 27 'input_methods.txt', |
| 29 '<(input_method_out_dir)/ibus_input_methods.h', | 28 '<(input_method_out_dir)/input_methods.h', |
| 30 ], | 29 ], |
| 31 'message': 'Generating ibus_input_methods.h', | 30 'message': 'Generating input_methods.h', |
| 32 }, | 31 }, |
| 33 ], | 32 ], |
| 34 'direct_dependent_settings': { | 33 'direct_dependent_settings': { |
| 35 'include_dirs': [ | 34 'include_dirs': [ |
| 36 '<(SHARED_INTERMEDIATE_DIR)', | 35 '<(SHARED_INTERMEDIATE_DIR)', |
| 37 ], | 36 ], |
| 38 }, | 37 }, |
| 39 }, | 38 }, |
| 40 ] | 39 ] |
| 41 } | 40 } |
| OLD | NEW |