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

Unified Diff: chromeos/chromeos.gyp

Issue 9838085: Move files inside chrome/browser/chromeos/dbus to chromeos/dbus (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: _ Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/chromeos.gyp
diff --git a/chromeos/chromeos.gyp b/chromeos/chromeos.gyp
index 30dd71429a51725436385b463cbcc784217ba7be..088ca2c076a1d5ea78939a138df3d08216949e3d 100644
--- a/chromeos/chromeos.gyp
+++ b/chromeos/chromeos.gyp
@@ -12,14 +12,111 @@
'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
+ '../build/linux/system.gyp:dbus',
+ '../dbus/dbus.gyp:dbus',
+ 'power_supply_properties_proto',
],
'export_dependent_settings': [
'../base/base.gyp:base',
],
'sources': [
+ 'dbus/bluetooth_adapter_client.cc',
+ 'dbus/bluetooth_adapter_client.h',
+ 'dbus/bluetooth_agent_service_provider.cc',
+ 'dbus/bluetooth_agent_service_provider.h',
+ 'dbus/bluetooth_device_client.cc',
+ 'dbus/bluetooth_device_client.h',
+ 'dbus/bluetooth_input_client.cc',
+ 'dbus/bluetooth_input_client.h',
+ 'dbus/bluetooth_manager_client.cc',
+ 'dbus/bluetooth_manager_client.h',
+ 'dbus/bluetooth_node_client.cc',
+ 'dbus/bluetooth_node_client.h',
+ 'dbus/bluetooth_property.cc',
+ 'dbus/bluetooth_property.h',
+ 'dbus/cashew_client.cc',
+ 'dbus/cashew_client.h',
+ 'dbus/cros_disks_client.cc',
+ 'dbus/cros_disks_client.h',
+ 'dbus/cryptohome_client.cc',
+ 'dbus/cryptohome_client.h',
+ 'dbus/dbus_thread_manager.cc',
+ 'dbus/dbus_thread_manager.h',
+ 'dbus/image_burner_client.cc',
+ 'dbus/image_burner_client.h',
+ 'dbus/introspectable_client.cc',
+ 'dbus/introspectable_client.h',
+ 'dbus/power_manager_client.cc',
+ 'dbus/power_manager_client.h',
'dbus/power_supply_status.cc',
'dbus/power_supply_status.h',
+ 'dbus/session_manager_client.cc',
+ 'dbus/session_manager_client.h',
+ 'dbus/speech_synthesizer_client.cc',
+ 'dbus/speech_synthesizer_client.h',
+ 'dbus/update_engine_client.cc',
+ 'dbus/update_engine_client.h',
],
},
- ]
+ {
+ # Protobuf compiler / generator for the PowerSupplyProperties protocol
+ # buffer.
+ 'target_name': 'power_supply_properties_proto',
+ 'type': 'static_library',
+ 'sources': [
+ '../third_party/cros_system_api/dbus/power_supply_properties.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': '../third_party/cros_system_api/dbus/',
+ 'proto_out_dir': 'chromeos/dbus',
+ },
+ 'includes': ['../build/protoc.gypi'],
+ },
+ {
+ # This target contains mocks that can be used to write unit tests.
+ 'target_name': 'chromeos_libs_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../build/linux/system.gyp:dbus',
+ '../dbus/dbus.gyp:dbus',
+ '../testing/gmock.gyp:gmock',
+ 'chromeos_libs',
+ ],
+ 'sources': [
+ 'dbus/mock_bluetooth_adapter_client.cc',
+ 'dbus/mock_bluetooth_adapter_client.h',
+ 'dbus/mock_bluetooth_device_client.cc',
+ 'dbus/mock_bluetooth_device_client.h',
+ 'dbus/mock_bluetooth_input_client.cc',
+ 'dbus/mock_bluetooth_input_client.h',
+ 'dbus/mock_bluetooth_manager_client.cc',
+ 'dbus/mock_bluetooth_manager_client.h',
+ 'dbus/mock_bluetooth_node_client.cc',
+ 'dbus/mock_bluetooth_node_client.h',
+ 'dbus/mock_cros_disks_client.cc',
+ 'dbus/mock_cros_disks_client.h',
+ 'dbus/mock_cashew_client.cc',
+ 'dbus/mock_cashew_client.h',
+ 'dbus/mock_cryptohome_client.cc',
+ 'dbus/mock_cryptohome_client.h',
+ 'dbus/mock_dbus_thread_manager.cc',
+ 'dbus/mock_dbus_thread_manager.h',
+ 'dbus/mock_image_burner_client.cc',
+ 'dbus/mock_image_burner_client.h',
+ 'dbus/mock_introspectable_client.cc',
+ 'dbus/mock_introspectable_client.h',
+ 'dbus/mock_power_manager_client.cc',
+ 'dbus/mock_power_manager_client.h',
+ 'dbus/mock_session_manager_client.cc',
+ 'dbus/mock_session_manager_client.h',
+ 'dbus/mock_speech_synthesizer_client.cc',
+ 'dbus/mock_speech_synthesizer_client.h',
+ 'dbus/mock_update_engine_client.cc',
+ 'dbus/mock_update_engine_client.h',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ },
+ ],
}
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chromeos/dbus/DEPS » ('j') | chromeos/dbus/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698