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 'inputview_dir': '../../third_party/google_input_tools/src/chrome/os/inputvi
ew', | 9 'inputview_dir': '../../third_party/google_input_tools/src/chrome/os/inputvi
ew', |
10 'inputview_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/resources/inputv
iew.js', | 10 'inputview_gen_js': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/resources/inputv
iew.js', |
11 }, | 11 }, |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'keyboard_mojom_bindings', | 14 'target_name': 'keyboard_mojom_bindings', |
15 'type': 'none', | 15 'type': 'none', |
16 'sources': [ | 16 'sources': [ |
17 'webui/keyboard.mojom', | 17 'webui/keyboard.mojom', |
18 ], | 18 ], |
19 'includes': [ '../../mojo/mojom_bindings_generator.gypi' ], | 19 'includes': [ '../../third_party/mojo/mojom_bindings_generator.gypi' ], |
20 }, | 20 }, |
21 { | 21 { |
22 # GN version: //ui/keyboard:resources | 22 # GN version: //ui/keyboard:resources |
23 'target_name': 'keyboard_resources', | 23 'target_name': 'keyboard_resources', |
24 'dependencies': [ | 24 'dependencies': [ |
25 'keyboard_mojom_bindings', | 25 'keyboard_mojom_bindings', |
26 '../../third_party/google_input_tools/inputview.gyp:inputview', | 26 '../../third_party/google_input_tools/inputview.gyp:inputview', |
27 ], | 27 ], |
28 'type': 'none', | 28 'type': 'none', |
29 'variables': { | 29 'variables': { |
(...skipping 26 matching lines...) Expand all Loading... |
56 { | 56 { |
57 # GN version: //ui/keyboard | 57 # GN version: //ui/keyboard |
58 'target_name': 'keyboard', | 58 'target_name': 'keyboard', |
59 'type': '<(component)', | 59 'type': '<(component)', |
60 'dependencies': [ | 60 'dependencies': [ |
61 '../../base/base.gyp:base', | 61 '../../base/base.gyp:base', |
62 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 62 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
63 '../../content/content.gyp:content_browser', | 63 '../../content/content.gyp:content_browser', |
64 '../../ipc/ipc.gyp:ipc', | 64 '../../ipc/ipc.gyp:ipc', |
65 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 65 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
66 '../../mojo/mojo_edk.gyp:mojo_system_impl', | |
67 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
68 '../../mojo/mojo_public.gyp:mojo_js_bindings', | |
69 '../../skia/skia.gyp:skia', | 66 '../../skia/skia.gyp:skia', |
| 67 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', |
| 68 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 69 '../../third_party/mojo/mojo_public.gyp:mojo_js_bindings', |
70 '../../url/url.gyp:url_lib', | 70 '../../url/url.gyp:url_lib', |
71 '../aura/aura.gyp:aura', | 71 '../aura/aura.gyp:aura', |
72 '../base/ui_base.gyp:ui_base', | 72 '../base/ui_base.gyp:ui_base', |
73 '../compositor/compositor.gyp:compositor', | 73 '../compositor/compositor.gyp:compositor', |
74 '../events/events.gyp:dom4_keycode_converter', | 74 '../events/events.gyp:dom4_keycode_converter', |
75 '../events/events.gyp:events', | 75 '../events/events.gyp:events', |
76 '../gfx/gfx.gyp:gfx', | 76 '../gfx/gfx.gyp:gfx', |
77 '../gfx/gfx.gyp:gfx_geometry', | 77 '../gfx/gfx.gyp:gfx_geometry', |
78 '../wm/wm.gyp:wm', | 78 '../wm/wm.gyp:wm', |
79 'keyboard_mojom_bindings', | 79 'keyboard_mojom_bindings', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 }], | 142 }], |
143 ['OS=="win" and win_use_allocator_shim==1', { | 143 ['OS=="win" and win_use_allocator_shim==1', { |
144 'dependencies': [ | 144 'dependencies': [ |
145 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 145 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
146 ], | 146 ], |
147 }], | 147 }], |
148 ], | 148 ], |
149 }, | 149 }, |
150 ], | 150 ], |
151 } | 151 } |
OLD | NEW |