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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'keyboard_mojom_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/webui/keybo
ard.mojom.js', | 8 'keyboard_mojom_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/webui/keybo
ard.mojom.js', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'keyboard_mojom_bindings', | 12 'target_name': 'keyboard_mojom_bindings', |
13 'type': 'none', | 13 'type': 'none', |
14 'sources': [ | 14 'sources': [ |
15 'webui/keyboard.mojom', | 15 'webui/keyboard.mojom', |
16 ], | 16 ], |
17 'includes': [ '../../mojo/public/tools/bindings/mojom_bindings_generator.g
ypi' ], | 17 'includes': [ '../../mojo/public/tools/bindings/mojom_bindings_generator.g
ypi' ], |
18 }, | 18 }, |
19 { | 19 { |
20 # GN version: //ui/keyboard:resources | 20 # GN version: //ui/keyboard:resources |
21 'target_name': 'keyboard_resources', | 21 'target_name': 'keyboard_resources', |
22 'dependencies': [ 'keyboard_mojom_bindings', ], | 22 'dependencies': [ |
| 23 'keyboard_mojom_bindings', |
| 24 '../../third_party/google_input_tools/inputview.gyp:inputview', |
| 25 ], |
23 'type': 'none', | 26 'type': 'none', |
24 'variables': { | 27 'variables': { |
25 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard', | 28 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard', |
26 }, | 29 }, |
27 'actions': [ | 30 'actions': [ |
28 { | 31 { |
29 'action_name': 'keyboard_resources', | 32 'action_name': 'keyboard_resources', |
30 'variables': { | 33 'variables': { |
31 'grit_grd_file': 'keyboard_resources.grd', | 34 'grit_grd_file': 'keyboard_resources.grd', |
32 'grit_additional_defines': [ | 35 'grit_additional_defines': [ |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 }], | 137 }], |
135 ['OS=="win" and win_use_allocator_shim==1', { | 138 ['OS=="win" and win_use_allocator_shim==1', { |
136 'dependencies': [ | 139 'dependencies': [ |
137 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 140 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
138 ], | 141 ], |
139 }], | 142 }], |
140 ], | 143 ], |
141 }, | 144 }, |
142 ], | 145 ], |
143 } | 146 } |
OLD | NEW |