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

Side by Side Diff: ui/base/BUILD.gn

Issue 750353004: Revert of Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « chromeos/ime/mock_component_extension_ime_manager_delegate.cc ('k') | ui/base/ime/DEPS » ('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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 "window_open_disposition.h", 269 "window_open_disposition.h",
270 "work_area_watcher_observer.h", 270 "work_area_watcher_observer.h",
271 ] 271 ]
272 272
273 if (is_win) { 273 if (is_win) {
274 sources += [ "touch/touch_device_win.cc" ] 274 sources += [ "touch/touch_device_win.cc" ]
275 } else if (is_android) { 275 } else if (is_android) {
276 sources += [ "touch/touch_device_android.cc" ] 276 sources += [ "touch/touch_device_android.cc" ]
277 } else if (use_ozone) { 277 } else if (use_ozone) {
278 sources += [ "touch/touch_device_ozone.cc" ] 278 sources += [ "touch/touch_device_ozone.cc" ]
279 } else if (use_aura && use_x11) { 279 } else if (use_aura && use_x11) {
280 sources += [ "touch/touch_device_aurax11.cc" ] 280 sources += [ "touch/touch_device_aurax11.cc" ]
281 } else { 281 } else {
282 # Empty implementation for all other cases. 282 # Empty implementation for all other cases.
283 sources += [ "touch/touch_device.cc" ] 283 sources += [ "touch/touch_device.cc" ]
284 } 284 }
285 285
286 defines = [ "UI_BASE_IMPLEMENTATION" ] 286 defines = [ "UI_BASE_IMPLEMENTATION" ]
287 287
288 public_deps = [ 288 public_deps = [
289 "//base", 289 "//base",
(...skipping 19 matching lines...) Expand all
309 deps += [ 309 deps += [
310 "//ui/events", 310 "//ui/events",
311 ] 311 ]
312 } 312 }
313 313
314 sources += [ 314 sources += [
315 "ime/candidate_window.cc", 315 "ime/candidate_window.cc",
316 "ime/candidate_window.h", 316 "ime/candidate_window.h",
317 "ime/chromeos/character_composer.cc", 317 "ime/chromeos/character_composer.cc",
318 "ime/chromeos/character_composer.h", 318 "ime/chromeos/character_composer.h",
319 "ime/chromeos/component_extension_ime_manager.cc",
320 "ime/chromeos/component_extension_ime_manager.h",
321 "ime/chromeos/composition_text.cc",
322 "ime/chromeos/composition_text.h",
323 "ime/chromeos/extension_ime_util.cc",
324 "ime/chromeos/extension_ime_util.h",
325 "ime/chromeos/fake_ime_keyboard.cc",
326 "ime/chromeos/fake_ime_keyboard.h",
327 "ime/chromeos/ime_bridge.cc", 319 "ime/chromeos/ime_bridge.cc",
328 "ime/chromeos/ime_bridge.h", 320 "ime/chromeos/ime_bridge.h",
329 "ime/chromeos/ime_keyboard.cc",
330 "ime/chromeos/ime_keyboard.h",
331 "ime/chromeos/ime_keyboard_ozone.cc",
332 "ime/chromeos/ime_keyboard_ozone.h",
333 "ime/chromeos/ime_keyboard_x11.cc",
334 "ime/chromeos/ime_keyboard_x11.h",
335 "ime/chromeos/ime_keymap.cc", 321 "ime/chromeos/ime_keymap.cc",
336 "ime/chromeos/ime_keymap.h", 322 "ime/chromeos/ime_keymap.h",
337 "ime/chromeos/input_method_delegate.h",
338 "ime/chromeos/input_method_descriptor.cc",
339 "ime/chromeos/input_method_descriptor.h",
340 "ime/chromeos/input_method_manager.cc",
341 "ime/chromeos/input_method_manager.h",
342 "ime/chromeos/input_method_whitelist.cc",
343 "ime/chromeos/input_method_whitelist.h",
344 "ime/chromeos/mock_ime_candidate_window_handler.cc", 323 "ime/chromeos/mock_ime_candidate_window_handler.cc",
345 "ime/chromeos/mock_ime_candidate_window_handler.h", 324 "ime/chromeos/mock_ime_candidate_window_handler.h",
346 "ime/chromeos/mock_ime_engine_handler.cc", 325 "ime/chromeos/mock_ime_engine_handler.cc",
347 "ime/chromeos/mock_ime_engine_handler.h", 326 "ime/chromeos/mock_ime_engine_handler.h",
348 "ime/chromeos/mock_ime_input_context_handler.cc", 327 "ime/chromeos/mock_ime_input_context_handler.cc",
349 "ime/chromeos/mock_ime_input_context_handler.h", 328 "ime/chromeos/mock_ime_input_context_handler.h",
350 "ime/composition_text.cc", 329 "ime/composition_text.cc",
351 "ime/composition_text.h", 330 "ime/composition_text.h",
352 "ime/composition_text_util_pango.cc", 331 "ime/composition_text_util_pango.cc",
353 "ime/composition_text_util_pango.h", 332 "ime/composition_text_util_pango.h",
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", 905 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc",
927 "x/selection_requestor_unittest.cc", 906 "x/selection_requestor_unittest.cc",
928 ] 907 ]
929 deps += [ 908 deps += [
930 "//chromeos", 909 "//chromeos",
931 ] 910 ]
932 } 911 }
933 } 912 }
934 } 913 }
935 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). 914 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk).
OLDNEW
« no previous file with comments | « chromeos/ime/mock_component_extension_ime_manager_delegate.cc ('k') | ui/base/ime/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698