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

Side by Side Diff: chromeos/chromeos.gyp

Issue 14508007: dbus: Add FakeOldBluetooth{Adapter,Device,Manager} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unnecessary lines. Created 7 years, 7 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
« no previous file with comments | « no previous file | chromeos/dbus/bluetooth_adapter_client.cc » ('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 (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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'dbus/fake_bluetooth_agent_service_provider.cc', 102 'dbus/fake_bluetooth_agent_service_provider.cc',
103 'dbus/fake_bluetooth_agent_service_provider.h', 103 'dbus/fake_bluetooth_agent_service_provider.h',
104 'dbus/fake_bluetooth_device_client.cc', 104 'dbus/fake_bluetooth_device_client.cc',
105 'dbus/fake_bluetooth_device_client.h', 105 'dbus/fake_bluetooth_device_client.h',
106 'dbus/fake_bluetooth_input_client.cc', 106 'dbus/fake_bluetooth_input_client.cc',
107 'dbus/fake_bluetooth_input_client.h', 107 'dbus/fake_bluetooth_input_client.h',
108 'dbus/fake_bluetooth_profile_manager_client.cc', 108 'dbus/fake_bluetooth_profile_manager_client.cc',
109 'dbus/fake_bluetooth_profile_manager_client.h', 109 'dbus/fake_bluetooth_profile_manager_client.h',
110 'dbus/fake_bluetooth_profile_service_provider.cc', 110 'dbus/fake_bluetooth_profile_service_provider.cc',
111 'dbus/fake_bluetooth_profile_service_provider.h', 111 'dbus/fake_bluetooth_profile_service_provider.h',
112 'dbus/fake_old_bluetooth_adapter_client.cc',
113 'dbus/fake_old_bluetooth_adapter_client.h',
114 'dbus/fake_old_bluetooth_device_client.cc',
115 'dbus/fake_old_bluetooth_device_client.h',
116 'dbus/fake_old_bluetooth_manager_client.cc',
117 'dbus/fake_old_bluetooth_manager_client.h',
112 'dbus/fake_image_burner_client.cc', 118 'dbus/fake_image_burner_client.cc',
113 'dbus/fake_image_burner_client.h', 119 'dbus/fake_image_burner_client.h',
114 'dbus/fake_system_clock_client.cc', 120 'dbus/fake_system_clock_client.cc',
115 'dbus/fake_system_clock_client.h', 121 'dbus/fake_system_clock_client.h',
116 'dbus/gsm_sms_client.cc', 122 'dbus/gsm_sms_client.cc',
117 'dbus/gsm_sms_client.h', 123 'dbus/gsm_sms_client.h',
118 'dbus/shill_client_helper.cc', 124 'dbus/shill_client_helper.cc',
119 'dbus/shill_client_helper.h', 125 'dbus/shill_client_helper.h',
120 'dbus/shill_device_client.cc', 126 'dbus/shill_device_client.cc',
121 'dbus/shill_device_client.h', 127 'dbus/shill_device_client.h',
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 ], 387 ],
382 'include_dirs': [ 388 'include_dirs': [
383 '..', 389 '..',
384 ], 390 ],
385 }, 391 },
386 { 392 {
387 'target_name': 'chromeos_test_support_without_gmock', 393 'target_name': 'chromeos_test_support_without_gmock',
388 'type': 'static_library', 394 'type': 'static_library',
389 'dependencies': [ 395 'dependencies': [
390 '../build/linux/system.gyp:dbus', 396 '../build/linux/system.gyp:dbus',
397 '../dbus/dbus.gyp:dbus',
391 'chromeos', 398 'chromeos',
392 'power_manager_proto', 399 'power_manager_proto',
393 ], 400 ],
394 'sources': [ 401 'sources': [
402 'dbus/bluetooth_property.cc',
403 'dbus/bluetooth_property.h',
395 'dbus/fake_cros_disks_client.cc', 404 'dbus/fake_cros_disks_client.cc',
396 'dbus/fake_cros_disks_client.h', 405 'dbus/fake_cros_disks_client.h',
397 'dbus/fake_cryptohome_client.cc', 406 'dbus/fake_cryptohome_client.cc',
398 'dbus/fake_cryptohome_client.h', 407 'dbus/fake_cryptohome_client.h',
399 'dbus/fake_image_burner_client.cc', 408 'dbus/fake_image_burner_client.cc',
400 'dbus/fake_image_burner_client.h', 409 'dbus/fake_image_burner_client.h',
410 'dbus/fake_old_bluetooth_adapter_client.cc',
411 'dbus/fake_old_bluetooth_adapter_client.h',
412 'dbus/fake_old_bluetooth_device_client.cc',
413 'dbus/fake_old_bluetooth_device_client.h',
414 'dbus/fake_old_bluetooth_manager_client.cc',
415 'dbus/fake_old_bluetooth_manager_client.h',
satorux1 2013/05/01 04:35:24 the fake_old_* stuff may be unnecessary here, as i
Haruki Sato 2013/05/01 05:44:31 They are necessary as these Fake*Client are now wo
401 'dbus/fake_power_manager_client.cc', 416 'dbus/fake_power_manager_client.cc',
402 'dbus/fake_power_manager_client.h', 417 'dbus/fake_power_manager_client.h',
403 'dbus/fake_shill_manager_client.cc', 418 'dbus/fake_shill_manager_client.cc',
404 'dbus/fake_shill_manager_client.h', 419 'dbus/fake_shill_manager_client.h',
405 'dbus/fake_system_clock_client.cc', 420 'dbus/fake_system_clock_client.cc',
406 'dbus/fake_system_clock_client.h', 421 'dbus/fake_system_clock_client.h',
407 'dbus/mock_dbus_thread_manager_without_gmock.cc', 422 'dbus/mock_dbus_thread_manager_without_gmock.cc',
408 'dbus/mock_dbus_thread_manager_without_gmock.h', 423 'dbus/mock_dbus_thread_manager_without_gmock.h',
409 'dbus/ibus/mock_ibus_client.cc', 424 'dbus/ibus/mock_ibus_client.cc',
410 'dbus/ibus/mock_ibus_client.h', 425 'dbus/ibus/mock_ibus_client.h',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 '../third_party/cros_system_api/dbus/video_activity_update.proto', 554 '../third_party/cros_system_api/dbus/video_activity_update.proto',
540 ], 555 ],
541 'variables': { 556 'variables': {
542 'proto_in_dir': '../third_party/cros_system_api/dbus/', 557 'proto_in_dir': '../third_party/cros_system_api/dbus/',
543 'proto_out_dir': 'chromeos/dbus', 558 'proto_out_dir': 'chromeos/dbus',
544 }, 559 },
545 'includes': ['../build/protoc.gypi'], 560 'includes': ['../build/protoc.gypi'],
546 }, 561 },
547 ], 562 ],
548 } 563 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/dbus/bluetooth_adapter_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698