Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: ui/base/ime/ui_base_ime.gyp

Issue 1619423003: Create //ui/base/ime:text_input_base target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change GYP target type to none. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 }, 8 },
9 'targets': [ 9 'targets': [
10 {
11 # GN version: //ui/base/ime:text_input_types
12 'target_name': 'text_input_types',
13 'type': 'none',
14 'sources' : [
15 'text_input_flags.h',
16 'text_input_mode.h',
17 'text_input_type.h',
18 ],
19 },
10 { 20 {
11 # GN version: //ui/base/ime 21 # GN version: //ui/base/ime
12 'target_name': 'ui_base_ime', 22 'target_name': 'ui_base_ime',
13 'type': '<(component)', 23 'type': '<(component)',
14 'dependencies': [ 24 'dependencies': [
15 '../../../base/base.gyp:base', 25 '../../../base/base.gyp:base',
16 '../../../base/base.gyp:base_i18n', 26 '../../../base/base.gyp:base_i18n',
17 '../../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 27 '../../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
18 '../../../skia/skia.gyp:skia', 28 '../../../skia/skia.gyp:skia',
19 '../../../third_party/icu/icu.gyp:icui18n', 29 '../../../third_party/icu/icu.gyp:icui18n',
20 '../../../third_party/icu/icu.gyp:icuuc', 30 '../../../third_party/icu/icu.gyp:icuuc',
21 '../../../url/url.gyp:url_lib', 31 '../../../url/url.gyp:url_lib',
22 '../../events/events.gyp:dom_keycode_converter', 32 '../../events/events.gyp:dom_keycode_converter',
23 '../../events/events.gyp:events', 33 '../../events/events.gyp:events',
24 '../../events/events.gyp:events_base', 34 '../../events/events.gyp:events_base',
25 '../../gfx/gfx.gyp:gfx', 35 '../../gfx/gfx.gyp:gfx',
26 '../../gfx/gfx.gyp:gfx_geometry', 36 '../../gfx/gfx.gyp:gfx_geometry',
27 '../ui_base.gyp:ui_base', 37 '../ui_base.gyp:ui_base',
38 ':text_input_types',
28 ], 39 ],
29 'defines': [ 40 'defines': [
30 'UI_BASE_IME_IMPLEMENTATION', 41 'UI_BASE_IME_IMPLEMENTATION',
31 ], 42 ],
32 'sources' : [ 43 'sources' : [
33 'candidate_window.cc', 44 'candidate_window.cc',
34 'candidate_window.h', 45 'candidate_window.h',
35 'chromeos/character_composer.cc', 46 'chromeos/character_composer.cc',
36 'chromeos/character_composer.h', 47 'chromeos/character_composer.h',
37 'chromeos/component_extension_ime_manager.cc', 48 'chromeos/component_extension_ime_manager.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'linux/fake_input_method_context.h', 111 'linux/fake_input_method_context.h',
101 'linux/fake_input_method_context_factory.cc', 112 'linux/fake_input_method_context_factory.cc',
102 'linux/fake_input_method_context_factory.h', 113 'linux/fake_input_method_context_factory.h',
103 'linux/linux_input_method_context.h', 114 'linux/linux_input_method_context.h',
104 'linux/linux_input_method_context_factory.cc', 115 'linux/linux_input_method_context_factory.cc',
105 'linux/linux_input_method_context_factory.h', 116 'linux/linux_input_method_context_factory.h',
106 'mock_input_method.cc', 117 'mock_input_method.cc',
107 'mock_input_method.h', 118 'mock_input_method.h',
108 'text_input_client.cc', 119 'text_input_client.cc',
109 'text_input_client.h', 120 'text_input_client.h',
110 'text_input_type.h',
111 'ui_base_ime_export.h', 121 'ui_base_ime_export.h',
112 'win/imm32_manager.cc', 122 'win/imm32_manager.cc',
113 'win/imm32_manager.h', 123 'win/imm32_manager.h',
114 'win/tsf_input_scope.cc', 124 'win/tsf_input_scope.cc',
115 'win/tsf_input_scope.h', 125 'win/tsf_input_scope.h',
116 ], 126 ],
117 'conditions': [ 127 'conditions': [
118 ['use_ozone==1', { 128 ['use_ozone==1', {
119 'dependencies': [ 129 'dependencies': [
120 '../../events/ozone/events_ozone.gyp:events_ozone_layout', 130 '../../events/ozone/events_ozone.gyp:events_ozone_layout',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 ['use_x11==0', { 182 ['use_x11==0', {
173 'sources!': [ 183 'sources!': [
174 'composition_text_util_pango.cc', 184 'composition_text_util_pango.cc',
175 'composition_text_util_pango.h', 185 'composition_text_util_pango.h',
176 ], 186 ],
177 }], 187 }],
178 ], 188 ],
179 }, 189 },
180 ], 190 ],
181 } 191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698