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

Side by Side Diff: chromeos/chromeos.gyp

Issue 10546010: Implement support for the OOB Pairing APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 22 matching lines...) Expand all
33 'dbus/bluetooth_agent_service_provider.cc', 33 'dbus/bluetooth_agent_service_provider.cc',
34 'dbus/bluetooth_agent_service_provider.h', 34 'dbus/bluetooth_agent_service_provider.h',
35 'dbus/bluetooth_device_client.cc', 35 'dbus/bluetooth_device_client.cc',
36 'dbus/bluetooth_device_client.h', 36 'dbus/bluetooth_device_client.h',
37 'dbus/bluetooth_input_client.cc', 37 'dbus/bluetooth_input_client.cc',
38 'dbus/bluetooth_input_client.h', 38 'dbus/bluetooth_input_client.h',
39 'dbus/bluetooth_manager_client.cc', 39 'dbus/bluetooth_manager_client.cc',
40 'dbus/bluetooth_manager_client.h', 40 'dbus/bluetooth_manager_client.h',
41 'dbus/bluetooth_node_client.cc', 41 'dbus/bluetooth_node_client.cc',
42 'dbus/bluetooth_node_client.h', 42 'dbus/bluetooth_node_client.h',
43 'dbus/bluetooth_out_of_band_client.cc',
44 'dbus/bluetooth_out_of_band_client.h',
43 'dbus/bluetooth_property.cc', 45 'dbus/bluetooth_property.cc',
44 'dbus/bluetooth_property.h', 46 'dbus/bluetooth_property.h',
45 'dbus/cashew_client.cc', 47 'dbus/cashew_client.cc',
46 'dbus/cashew_client.h', 48 'dbus/cashew_client.h',
47 'dbus/cros_disks_client.cc', 49 'dbus/cros_disks_client.cc',
48 'dbus/cros_disks_client.h', 50 'dbus/cros_disks_client.h',
49 'dbus/cryptohome_client.cc', 51 'dbus/cryptohome_client.cc',
50 'dbus/cryptohome_client.h', 52 'dbus/cryptohome_client.h',
51 'dbus/dbus_client_implementation_type.h', 53 'dbus/dbus_client_implementation_type.h',
52 'dbus/dbus_method_call_status.h', 54 'dbus/dbus_method_call_status.h',
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'dbus/mock_bluetooth_adapter_client.cc', 129 'dbus/mock_bluetooth_adapter_client.cc',
128 'dbus/mock_bluetooth_adapter_client.h', 130 'dbus/mock_bluetooth_adapter_client.h',
129 'dbus/mock_bluetooth_device_client.cc', 131 'dbus/mock_bluetooth_device_client.cc',
130 'dbus/mock_bluetooth_device_client.h', 132 'dbus/mock_bluetooth_device_client.h',
131 'dbus/mock_bluetooth_input_client.cc', 133 'dbus/mock_bluetooth_input_client.cc',
132 'dbus/mock_bluetooth_input_client.h', 134 'dbus/mock_bluetooth_input_client.h',
133 'dbus/mock_bluetooth_manager_client.cc', 135 'dbus/mock_bluetooth_manager_client.cc',
134 'dbus/mock_bluetooth_manager_client.h', 136 'dbus/mock_bluetooth_manager_client.h',
135 'dbus/mock_bluetooth_node_client.cc', 137 'dbus/mock_bluetooth_node_client.cc',
136 'dbus/mock_bluetooth_node_client.h', 138 'dbus/mock_bluetooth_node_client.h',
139 'dbus/mock_bluetooth_out_of_band_client.cc',
140 'dbus/mock_bluetooth_out_of_band_client.h',
137 'dbus/mock_cros_disks_client.cc', 141 'dbus/mock_cros_disks_client.cc',
138 'dbus/mock_cros_disks_client.h', 142 'dbus/mock_cros_disks_client.h',
139 'dbus/mock_cashew_client.cc', 143 'dbus/mock_cashew_client.cc',
140 'dbus/mock_cashew_client.h', 144 'dbus/mock_cashew_client.h',
141 'dbus/mock_cryptohome_client.cc', 145 'dbus/mock_cryptohome_client.cc',
142 'dbus/mock_cryptohome_client.h', 146 'dbus/mock_cryptohome_client.h',
143 'dbus/mock_dbus_thread_manager.cc', 147 'dbus/mock_dbus_thread_manager.cc',
144 'dbus/mock_dbus_thread_manager.h', 148 'dbus/mock_dbus_thread_manager.h',
145 'dbus/mock_debug_daemon_client.cc', 149 'dbus/mock_debug_daemon_client.cc',
146 'dbus/mock_debug_daemon_client.h', 150 'dbus/mock_debug_daemon_client.h',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 '../third_party/cros_system_api/dbus/power_supply_properties.proto', 244 '../third_party/cros_system_api/dbus/power_supply_properties.proto',
241 ], 245 ],
242 'variables': { 246 'variables': {
243 'proto_in_dir': '../third_party/cros_system_api/dbus/', 247 'proto_in_dir': '../third_party/cros_system_api/dbus/',
244 'proto_out_dir': 'chromeos/dbus', 248 'proto_out_dir': 'chromeos/dbus',
245 }, 249 },
246 'includes': ['../build/protoc.gypi'], 250 'includes': ['../build/protoc.gypi'],
247 }, 251 },
248 ], 252 ],
249 } 253 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h ('k') | chromeos/dbus/bluetooth_out_of_band_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698