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

Side by Side Diff: ui/views/mus/BUILD.gn

Issue 2284003002: Revert of IME for Mus: Make InputMethodMus use the IME Mojo API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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
« no previous file with comments | « services/ui/service.cc ('k') | ui/views/mus/input_method_mus.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//services/shell/public/cpp/service.gni") 7 import("//services/shell/public/cpp/service.gni")
8 import("//services/shell/public/service_manifest.gni") 8 import("//services/shell/public/service_manifest.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 19 matching lines...) Expand all
30 "native_widget_mus.h", 30 "native_widget_mus.h",
31 "os_exchange_data_provider_mus.cc", 31 "os_exchange_data_provider_mus.cc",
32 "os_exchange_data_provider_mus.h", 32 "os_exchange_data_provider_mus.h",
33 "pointer_watcher_event_router.cc", 33 "pointer_watcher_event_router.cc",
34 "pointer_watcher_event_router.h", 34 "pointer_watcher_event_router.h",
35 "screen_mus.cc", 35 "screen_mus.cc",
36 "screen_mus.h", 36 "screen_mus.h",
37 "screen_mus_delegate.h", 37 "screen_mus_delegate.h",
38 "surface_context_factory.cc", 38 "surface_context_factory.cc",
39 "surface_context_factory.h", 39 "surface_context_factory.h",
40 "text_input_client_impl.cc",
41 "text_input_client_impl.h",
42 "window_manager_connection.cc", 40 "window_manager_connection.cc",
43 "window_manager_connection.h", 41 "window_manager_connection.h",
44 "window_manager_constants_converters.cc", 42 "window_manager_constants_converters.cc",
45 "window_manager_constants_converters.h", 43 "window_manager_constants_converters.h",
46 "window_manager_frame_values.cc", 44 "window_manager_frame_values.cc",
47 "window_manager_frame_values.h", 45 "window_manager_frame_values.h",
48 "window_tree_host_mus.cc", 46 "window_tree_host_mus.cc",
49 "window_tree_host_mus.h", 47 "window_tree_host_mus.h",
50 ] 48 ]
51 49
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 ] 148 ]
151 } 149 }
152 150
153 test("views_mus_unittests") { 151 test("views_mus_unittests") {
154 testonly = true 152 testonly = true
155 153
156 configs += [ "//build/config:precompiled_headers" ] 154 configs += [ "//build/config:precompiled_headers" ]
157 155
158 sources = [ 156 sources = [
159 "display_list_unittest.cc", 157 "display_list_unittest.cc",
160 "input_method_mus_unittest.cc",
161 "native_widget_mus_unittest.cc", 158 "native_widget_mus_unittest.cc",
162 "os_exchange_data_provider_mus_unittest.cc", 159 "os_exchange_data_provider_mus_unittest.cc",
163 "pointer_watcher_event_router_unittest.cc", 160 "pointer_watcher_event_router_unittest.cc",
164 "run_all_unittests_mus.cc", 161 "run_all_unittests_mus.cc",
165 "screen_mus_unittest.cc", 162 "screen_mus_unittest.cc",
166 ] 163 ]
167 164
168 sources += rebase_path(gypi.views_unittests_sources, ".", "//ui/views") 165 sources += rebase_path(gypi.views_unittests_sources, ".", "//ui/views")
169 sources += rebase_path(gypi.views_unittests_aura_sources, ".", "//ui/views") 166 sources += rebase_path(gypi.views_unittests_aura_sources, ".", "//ui/views")
170 167
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 "//ui/strings", 212 "//ui/strings",
216 "//ui/touch_selection", 213 "//ui/touch_selection",
217 "//ui/views", 214 "//ui/views",
218 "//ui/views:test_support_internal", 215 "//ui/views:test_support_internal",
219 "//ui/wm", 216 "//ui/wm",
220 "//url", 217 "//url",
221 ] 218 ]
222 219
223 data_deps = [ 220 data_deps = [
224 ":unittests_manifest", 221 ":unittests_manifest",
225 "//services/ui/ime/test_ime_driver",
226 "//services/ui/test_wm", 222 "//services/ui/test_wm",
227 ] 223 ]
228 224
229 if (is_win) { 225 if (is_win) {
230 deps += [ 226 deps += [
231 "//build/win:default_exe_manifest", 227 "//build/win:default_exe_manifest",
232 "//third_party/iaccessible2", 228 "//third_party/iaccessible2",
233 "//third_party/wtl", 229 "//third_party/wtl",
234 ] 230 ]
235 libs = [ 231 libs = [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 type = "exe" 303 type = "exe"
308 name = "views_mus_unittests" 304 name = "views_mus_unittests"
309 source = "unittests_manifest.json" 305 source = "unittests_manifest.json"
310 } 306 }
311 307
312 service_manifest("interactive_ui_tests_manifest") { 308 service_manifest("interactive_ui_tests_manifest") {
313 type = "exe" 309 type = "exe"
314 name = "views_mus_interactive_ui_tests" 310 name = "views_mus_interactive_ui_tests"
315 source = "interactive_ui_tests_manifest.json" 311 source = "interactive_ui_tests_manifest.json"
316 } 312 }
OLDNEW
« no previous file with comments | « services/ui/service.cc ('k') | ui/views/mus/input_method_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698