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

Side by Side Diff: chromeos/chromeos.gyp

Issue 232333002: ozone: Rename XKeyboard to KeyboardController & use fake under ozone (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename to ImeKeyboard & rebase Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'chromeos_tools.gypi' 10 'chromeos_tools.gypi'
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 'dbus/update_engine_client.cc', 237 'dbus/update_engine_client.cc',
238 'dbus/update_engine_client.h', 238 'dbus/update_engine_client.h',
239 'dbus/volume_state.cc', 239 'dbus/volume_state.cc',
240 'dbus/volume_state.h', 240 'dbus/volume_state.h',
241 'disks/disk_mount_manager.cc', 241 'disks/disk_mount_manager.cc',
242 'disks/disk_mount_manager.h', 242 'disks/disk_mount_manager.h',
243 'ime/component_extension_ime_manager.cc', 243 'ime/component_extension_ime_manager.cc',
244 'ime/component_extension_ime_manager.h', 244 'ime/component_extension_ime_manager.h',
245 'ime/extension_ime_util.cc', 245 'ime/extension_ime_util.cc',
246 'ime/extension_ime_util.h', 246 'ime/extension_ime_util.h',
247 'ime/fake_xkeyboard.cc', 247 'ime/fake_ime_keyboard.cc',
248 'ime/fake_xkeyboard.h', 248 'ime/fake_ime_keyboard.h',
249 'ime/composition_text.cc', 249 'ime/composition_text.cc',
250 'ime/composition_text.h', 250 'ime/composition_text.h',
251 'ime/input_method_delegate.h', 251 'ime/input_method_delegate.h',
252 'ime/input_method_descriptor.cc', 252 'ime/input_method_descriptor.cc',
253 'ime/input_method_descriptor.h', 253 'ime/input_method_descriptor.h',
254 'ime/input_method_manager.cc', 254 'ime/input_method_manager.cc',
255 'ime/input_method_manager.h', 255 'ime/input_method_manager.h',
256 'ime/input_method_whitelist.cc', 256 'ime/input_method_whitelist.cc',
257 'ime/input_method_whitelist.h', 257 'ime/input_method_whitelist.h',
258 'ime/xkeyboard.cc', 258 'ime/ime_keyboard.h',
259 'ime/xkeyboard.h', 259 'ime/ime_keyboard_ozone.cc',
260 'ime/ime_keyboard_x11.cc',
260 'login/login_state.cc', 261 'login/login_state.cc',
261 'login/login_state.h', 262 'login/login_state.h',
262 'network/certificate_pattern.cc', 263 'network/certificate_pattern.cc',
263 'network/certificate_pattern.h', 264 'network/certificate_pattern.h',
264 'network/client_cert_resolver.cc', 265 'network/client_cert_resolver.cc',
265 'network/client_cert_resolver.h', 266 'network/client_cert_resolver.h',
266 'network/client_cert_util.cc', 267 'network/client_cert_util.cc',
267 'network/client_cert_util.h', 268 'network/client_cert_util.h',
268 'network/device_state.cc', 269 'network/device_state.cc',
269 'network/device_state.h', 270 'network/device_state.h',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 'tpm_token_loader.h' 369 'tpm_token_loader.h'
369 ], 370 ],
370 'conditions': [ 371 'conditions': [
371 ['use_x11 == 1', { 372 ['use_x11 == 1', {
372 'dependencies': [ 373 'dependencies': [
373 '../build/linux/system.gyp:x11', 374 '../build/linux/system.gyp:x11',
374 ], 375 ],
375 }, { 376 }, {
376 # use_x11 == 0 377 # use_x11 == 0
377 'sources!': [ 378 'sources!': [
378 'ime/xkeyboard.cc', 379 'ime/keyboard_controller.cc',
379 'ime/xkeyboard.h', 380 'ime/ime_keyboard.h',
380 ], 381 ],
381 }], 382 }],
382 ], 383 ],
383 }, 384 },
384 { 385 {
385 # This target contains mocks that can be used to write unit tests. 386 # This target contains mocks that can be used to write unit tests.
386 'target_name': 'chromeos_test_support', 387 'target_name': 'chromeos_test_support',
387 'type': 'static_library', 388 'type': 'static_library',
388 'dependencies': [ 389 'dependencies': [
389 '../build/linux/system.gyp:dbus', 390 '../build/linux/system.gyp:dbus',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 'dbus/shill_ipconfig_client_unittest.cc', 500 'dbus/shill_ipconfig_client_unittest.cc',
500 'dbus/shill_manager_client_unittest.cc', 501 'dbus/shill_manager_client_unittest.cc',
501 'dbus/shill_profile_client_unittest.cc', 502 'dbus/shill_profile_client_unittest.cc',
502 'dbus/shill_service_client_unittest.cc', 503 'dbus/shill_service_client_unittest.cc',
503 'disks/disk_mount_manager_unittest.cc', 504 'disks/disk_mount_manager_unittest.cc',
504 'ime/component_extension_ime_manager_unittest.cc', 505 'ime/component_extension_ime_manager_unittest.cc',
505 'ime/extension_ime_util_unittest.cc', 506 'ime/extension_ime_util_unittest.cc',
506 'ime/composition_text_unittest.cc', 507 'ime/composition_text_unittest.cc',
507 'ime/input_method_manager.h', 508 'ime/input_method_manager.h',
508 'ime/input_method_whitelist_unittest.cc', 509 'ime/input_method_whitelist_unittest.cc',
509 'ime/xkeyboard_unittest.cc', 510 'ime/ime_keyboard_x11_unittest.cc',
510 'login/login_state_unittest.cc', 511 'login/login_state_unittest.cc',
511 'network/client_cert_resolver_unittest.cc', 512 'network/client_cert_resolver_unittest.cc',
512 'network/geolocation_handler_unittest.cc', 513 'network/geolocation_handler_unittest.cc',
513 'network/managed_network_configuration_handler_unittest.cc', 514 'network/managed_network_configuration_handler_unittest.cc',
514 'network/network_cert_migrator_unittest.cc', 515 'network/network_cert_migrator_unittest.cc',
515 'network/network_change_notifier_chromeos_unittest.cc', 516 'network/network_change_notifier_chromeos_unittest.cc',
516 'network/network_configuration_handler_unittest.cc', 517 'network/network_configuration_handler_unittest.cc',
517 'network/network_connection_handler_unittest.cc', 518 'network/network_connection_handler_unittest.cc',
518 'network/network_device_handler_unittest.cc', 519 'network/network_device_handler_unittest.cc',
519 'network/network_event_log_unittest.cc', 520 'network/network_event_log_unittest.cc',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 ], 589 ],
589 'variables': { 590 'variables': {
590 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 591 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
591 'proto_out_dir': 'chromeos/cryptohome', 592 'proto_out_dir': 'chromeos/cryptohome',
592 }, 593 },
593 'includes': ['../build/protoc.gypi'], 594 'includes': ['../build/protoc.gypi'],
594 }, 595 },
595 596
596 ], 597 ],
597 } 598 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc ('k') | chromeos/ime/fake_ime_keyboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698