OLD | NEW |
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 "window_open_disposition.h", | 267 "window_open_disposition.h", |
268 "work_area_watcher_observer.h", | 268 "work_area_watcher_observer.h", |
269 ] | 269 ] |
270 | 270 |
271 if (is_win) { | 271 if (is_win) { |
272 sources += [ "touch/touch_device_win.cc" ] | 272 sources += [ "touch/touch_device_win.cc" ] |
273 } else if (is_android) { | 273 } else if (is_android) { |
274 sources += [ "touch/touch_device_android.cc" ] | 274 sources += [ "touch/touch_device_android.cc" ] |
275 } else if (use_ozone) { | 275 } else if (use_ozone) { |
276 sources += [ "touch/touch_device_ozone.cc" ] | 276 sources += [ "touch/touch_device_ozone.cc" ] |
277 } else if (use_aura && use_x11) { | 277 } else if (use_aura && use_x11) { |
278 sources += [ "touch/touch_device_aurax11.cc" ] | 278 sources += [ "touch/touch_device_aurax11.cc" ] |
279 } else { | 279 } else { |
280 # Empty implementation for all other cases. | 280 # Empty implementation for all other cases. |
281 sources += [ "touch/touch_device.cc" ] | 281 sources += [ "touch/touch_device.cc" ] |
282 } | 282 } |
283 | 283 |
284 defines = [ "UI_BASE_IMPLEMENTATION" ] | 284 defines = [ "UI_BASE_IMPLEMENTATION" ] |
285 | 285 |
286 public_deps = [ | 286 public_deps = [ |
287 "//base", | 287 "//base", |
(...skipping 19 matching lines...) Expand all Loading... |
307 deps += [ | 307 deps += [ |
308 "//ui/events", | 308 "//ui/events", |
309 ] | 309 ] |
310 } | 310 } |
311 | 311 |
312 sources += [ | 312 sources += [ |
313 "ime/candidate_window.cc", | 313 "ime/candidate_window.cc", |
314 "ime/candidate_window.h", | 314 "ime/candidate_window.h", |
315 "ime/chromeos/character_composer.cc", | 315 "ime/chromeos/character_composer.cc", |
316 "ime/chromeos/character_composer.h", | 316 "ime/chromeos/character_composer.h", |
| 317 "ime/chromeos/component_extension_ime_manager.cc", |
| 318 "ime/chromeos/component_extension_ime_manager.h", |
| 319 "ime/chromeos/composition_text.cc", |
| 320 "ime/chromeos/composition_text.h", |
| 321 "ime/chromeos/extension_ime_util.cc", |
| 322 "ime/chromeos/extension_ime_util.h", |
| 323 "ime/chromeos/fake_ime_keyboard.cc", |
| 324 "ime/chromeos/fake_ime_keyboard.h", |
317 "ime/chromeos/ime_bridge.cc", | 325 "ime/chromeos/ime_bridge.cc", |
318 "ime/chromeos/ime_bridge.h", | 326 "ime/chromeos/ime_bridge.h", |
| 327 "ime/chromeos/ime_keyboard.cc", |
| 328 "ime/chromeos/ime_keyboard.h", |
| 329 "ime/chromeos/ime_keyboard_ozone.cc", |
| 330 "ime/chromeos/ime_keyboard_ozone.h", |
| 331 "ime/chromeos/ime_keyboard_x11.cc", |
| 332 "ime/chromeos/ime_keyboard_x11.h", |
319 "ime/chromeos/ime_keymap.cc", | 333 "ime/chromeos/ime_keymap.cc", |
320 "ime/chromeos/ime_keymap.h", | 334 "ime/chromeos/ime_keymap.h", |
| 335 "ime/chromeos/input_method_delegate.h", |
| 336 "ime/chromeos/input_method_descriptor.cc", |
| 337 "ime/chromeos/input_method_descriptor.h", |
| 338 "ime/chromeos/input_method_manager.cc", |
| 339 "ime/chromeos/input_method_manager.h", |
| 340 "ime/chromeos/input_method_whitelist.cc", |
| 341 "ime/chromeos/input_method_whitelist.h", |
321 "ime/chromeos/mock_ime_candidate_window_handler.cc", | 342 "ime/chromeos/mock_ime_candidate_window_handler.cc", |
322 "ime/chromeos/mock_ime_candidate_window_handler.h", | 343 "ime/chromeos/mock_ime_candidate_window_handler.h", |
323 "ime/chromeos/mock_ime_engine_handler.cc", | 344 "ime/chromeos/mock_ime_engine_handler.cc", |
324 "ime/chromeos/mock_ime_engine_handler.h", | 345 "ime/chromeos/mock_ime_engine_handler.h", |
325 "ime/chromeos/mock_ime_input_context_handler.cc", | 346 "ime/chromeos/mock_ime_input_context_handler.cc", |
326 "ime/chromeos/mock_ime_input_context_handler.h", | 347 "ime/chromeos/mock_ime_input_context_handler.h", |
327 "ime/composition_text.cc", | 348 "ime/composition_text.cc", |
328 "ime/composition_text.h", | 349 "ime/composition_text.h", |
329 "ime/composition_text_util_pango.cc", | 350 "ime/composition_text_util_pango.cc", |
330 "ime/composition_text_util_pango.h", | 351 "ime/composition_text_util_pango.h", |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 924 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
904 "x/selection_requestor_unittest.cc", | 925 "x/selection_requestor_unittest.cc", |
905 ] | 926 ] |
906 deps += [ | 927 deps += [ |
907 "//chromeos", | 928 "//chromeos", |
908 ] | 929 ] |
909 } | 930 } |
910 } | 931 } |
911 } | 932 } |
912 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 933 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |