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

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: 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'dbus/update_engine_client.cc', 224 'dbus/update_engine_client.cc',
225 'dbus/update_engine_client.h', 225 'dbus/update_engine_client.h',
226 'dbus/volume_state.cc', 226 'dbus/volume_state.cc',
227 'dbus/volume_state.h', 227 'dbus/volume_state.h',
228 'disks/disk_mount_manager.cc', 228 'disks/disk_mount_manager.cc',
229 'disks/disk_mount_manager.h', 229 'disks/disk_mount_manager.h',
230 'ime/component_extension_ime_manager.cc', 230 'ime/component_extension_ime_manager.cc',
231 'ime/component_extension_ime_manager.h', 231 'ime/component_extension_ime_manager.h',
232 'ime/extension_ime_util.cc', 232 'ime/extension_ime_util.cc',
233 'ime/extension_ime_util.h', 233 'ime/extension_ime_util.h',
234 'ime/fake_xkeyboard.cc', 234 'ime/fake_keyboard_controller.cc',
235 'ime/fake_xkeyboard.h', 235 'ime/fake_keyboard_controller.h',
236 'ime/composition_text.cc', 236 'ime/composition_text.cc',
237 'ime/composition_text.h', 237 'ime/composition_text.h',
238 'ime/input_method_delegate.h', 238 'ime/input_method_delegate.h',
239 'ime/input_method_descriptor.cc', 239 'ime/input_method_descriptor.cc',
240 'ime/input_method_descriptor.h', 240 'ime/input_method_descriptor.h',
241 'ime/input_method_manager.cc', 241 'ime/input_method_manager.cc',
242 'ime/input_method_manager.h', 242 'ime/input_method_manager.h',
243 'ime/input_method_whitelist.cc', 243 'ime/input_method_whitelist.cc',
244 'ime/input_method_whitelist.h', 244 'ime/input_method_whitelist.h',
245 'ime/xkeyboard.cc', 245 'ime/keyboard_controller.h',
246 'ime/xkeyboard.h', 246 'ime/keyboard_controller_ozone.cc',
247 'ime/keyboard_controller_x11.cc',
247 'login/login_state.cc', 248 'login/login_state.cc',
248 'login/login_state.h', 249 'login/login_state.h',
249 'network/certificate_pattern.cc', 250 'network/certificate_pattern.cc',
250 'network/certificate_pattern.h', 251 'network/certificate_pattern.h',
251 'network/client_cert_resolver.cc', 252 'network/client_cert_resolver.cc',
252 'network/client_cert_resolver.h', 253 'network/client_cert_resolver.h',
253 'network/client_cert_util.cc', 254 'network/client_cert_util.cc',
254 'network/client_cert_util.h', 255 'network/client_cert_util.h',
255 'network/device_state.cc', 256 'network/device_state.cc',
256 'network/device_state.h', 257 'network/device_state.h',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 'tpm_token_loader.h' 356 'tpm_token_loader.h'
356 ], 357 ],
357 'conditions': [ 358 'conditions': [
358 ['use_x11 == 1', { 359 ['use_x11 == 1', {
359 'dependencies': [ 360 'dependencies': [
360 '../build/linux/system.gyp:x11', 361 '../build/linux/system.gyp:x11',
361 ], 362 ],
362 }, { 363 }, {
363 # use_x11 == 0 364 # use_x11 == 0
364 'sources!': [ 365 'sources!': [
365 'ime/xkeyboard.cc', 366 'ime/keyboard_controller.cc',
366 'ime/xkeyboard.h', 367 'ime/keyboard_controller.h',
367 ], 368 ],
368 }], 369 }],
369 ], 370 ],
370 }, 371 },
371 { 372 {
372 # This target contains mocks that can be used to write unit tests. 373 # This target contains mocks that can be used to write unit tests.
373 'target_name': 'chromeos_test_support', 374 'target_name': 'chromeos_test_support',
374 'type': 'static_library', 375 'type': 'static_library',
375 'dependencies': [ 376 'dependencies': [
376 '../build/linux/system.gyp:dbus', 377 '../build/linux/system.gyp:dbus',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 'dbus/shill_ipconfig_client_unittest.cc', 487 'dbus/shill_ipconfig_client_unittest.cc',
487 'dbus/shill_manager_client_unittest.cc', 488 'dbus/shill_manager_client_unittest.cc',
488 'dbus/shill_profile_client_unittest.cc', 489 'dbus/shill_profile_client_unittest.cc',
489 'dbus/shill_service_client_unittest.cc', 490 'dbus/shill_service_client_unittest.cc',
490 'disks/disk_mount_manager_unittest.cc', 491 'disks/disk_mount_manager_unittest.cc',
491 'ime/component_extension_ime_manager_unittest.cc', 492 'ime/component_extension_ime_manager_unittest.cc',
492 'ime/extension_ime_util_unittest.cc', 493 'ime/extension_ime_util_unittest.cc',
493 'ime/composition_text_unittest.cc', 494 'ime/composition_text_unittest.cc',
494 'ime/input_method_manager.h', 495 'ime/input_method_manager.h',
495 'ime/input_method_whitelist_unittest.cc', 496 'ime/input_method_whitelist_unittest.cc',
496 'ime/xkeyboard_unittest.cc', 497 'ime/keyboard_controller_unittest.cc',
497 'login/login_state_unittest.cc', 498 'login/login_state_unittest.cc',
498 'network/client_cert_resolver_unittest.cc', 499 'network/client_cert_resolver_unittest.cc',
499 'network/geolocation_handler_unittest.cc', 500 'network/geolocation_handler_unittest.cc',
500 'network/managed_network_configuration_handler_unittest.cc', 501 'network/managed_network_configuration_handler_unittest.cc',
501 'network/network_cert_migrator_unittest.cc', 502 'network/network_cert_migrator_unittest.cc',
502 'network/network_change_notifier_chromeos_unittest.cc', 503 'network/network_change_notifier_chromeos_unittest.cc',
503 'network/network_configuration_handler_unittest.cc', 504 'network/network_configuration_handler_unittest.cc',
504 'network/network_connection_handler_unittest.cc', 505 'network/network_connection_handler_unittest.cc',
505 'network/network_device_handler_unittest.cc', 506 'network/network_device_handler_unittest.cc',
506 'network/network_event_log_unittest.cc', 507 'network/network_event_log_unittest.cc',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 ], 576 ],
576 'variables': { 577 'variables': {
577 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 578 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
578 'proto_out_dir': 'chromeos/cryptohome', 579 'proto_out_dir': 'chromeos/cryptohome',
579 }, 580 },
580 'includes': ['../build/protoc.gypi'], 581 'includes': ['../build/protoc.gypi'],
581 }, 582 },
582 583
583 ], 584 ],
584 } 585 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698