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

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

Issue 2230393002: IME for Mus: Make InputMethodMus use the IME Mojo API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix dependencies. 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
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",
40 "window_manager_connection.cc", 42 "window_manager_connection.cc",
41 "window_manager_connection.h", 43 "window_manager_connection.h",
42 "window_manager_constants_converters.cc", 44 "window_manager_constants_converters.cc",
43 "window_manager_constants_converters.h", 45 "window_manager_constants_converters.h",
44 "window_manager_frame_values.cc", 46 "window_manager_frame_values.cc",
45 "window_manager_frame_values.h", 47 "window_manager_frame_values.h",
46 "window_tree_host_mus.cc", 48 "window_tree_host_mus.cc",
47 "window_tree_host_mus.h", 49 "window_tree_host_mus.h",
48 ] 50 ]
49 51
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 ] 150 ]
149 } 151 }
150 152
151 test("views_mus_unittests") { 153 test("views_mus_unittests") {
152 testonly = true 154 testonly = true
153 155
154 configs += [ "//build/config:precompiled_headers" ] 156 configs += [ "//build/config:precompiled_headers" ]
155 157
156 sources = [ 158 sources = [
157 "display_list_unittest.cc", 159 "display_list_unittest.cc",
160 "input_method_mus_unittest.cc",
158 "native_widget_mus_unittest.cc", 161 "native_widget_mus_unittest.cc",
159 "os_exchange_data_provider_mus_unittest.cc", 162 "os_exchange_data_provider_mus_unittest.cc",
160 "pointer_watcher_event_router_unittest.cc", 163 "pointer_watcher_event_router_unittest.cc",
161 "run_all_unittests_mus.cc", 164 "run_all_unittests_mus.cc",
162 "screen_mus_unittest.cc", 165 "screen_mus_unittest.cc",
163 ] 166 ]
164 167
165 sources += rebase_path(gypi.views_unittests_sources, ".", "//ui/views") 168 sources += rebase_path(gypi.views_unittests_sources, ".", "//ui/views")
166 sources += rebase_path(gypi.views_unittests_aura_sources, ".", "//ui/views") 169 sources += rebase_path(gypi.views_unittests_aura_sources, ".", "//ui/views")
167 170
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 "//ui/strings", 215 "//ui/strings",
213 "//ui/touch_selection", 216 "//ui/touch_selection",
214 "//ui/views", 217 "//ui/views",
215 "//ui/views:test_support_internal", 218 "//ui/views:test_support_internal",
216 "//ui/wm", 219 "//ui/wm",
217 "//url", 220 "//url",
218 ] 221 ]
219 222
220 data_deps = [ 223 data_deps = [
221 ":unittests_manifest", 224 ":unittests_manifest",
225 "//services/ui/ime/test_ime_driver",
222 "//services/ui/test_wm", 226 "//services/ui/test_wm",
223 ] 227 ]
224 228
225 if (is_win) { 229 if (is_win) {
226 deps += [ 230 deps += [
227 "//build/win:default_exe_manifest", 231 "//build/win:default_exe_manifest",
228 "//third_party/iaccessible2", 232 "//third_party/iaccessible2",
229 "//third_party/wtl", 233 "//third_party/wtl",
230 ] 234 ]
231 libs = [ 235 libs = [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 type = "exe" 307 type = "exe"
304 name = "views_mus_unittests" 308 name = "views_mus_unittests"
305 source = "unittests_manifest.json" 309 source = "unittests_manifest.json"
306 } 310 }
307 311
308 service_manifest("interactive_ui_tests_manifest") { 312 service_manifest("interactive_ui_tests_manifest") {
309 type = "exe" 313 type = "exe"
310 name = "views_mus_interactive_ui_tests" 314 name = "views_mus_interactive_ui_tests"
311 source = "interactive_ui_tests_manifest.json" 315 source = "interactive_ui_tests_manifest.json"
312 } 316 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698