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

Side by Side Diff: device/device_tests.gyp

Issue 1367663002: Add Linux support for the Bluetooth API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor_dbus
Patch Set: rebase Created 5 years, 2 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
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 18 matching lines...) Expand all
29 'usb/usb.gyp:device_usb_mocks', 29 'usb/usb.gyp:device_usb_mocks',
30 'hid/hid.gyp:device_hid', 30 'hid/hid.gyp:device_hid',
31 'serial/serial.gyp:device_serial', 31 'serial/serial.gyp:device_serial',
32 'serial/serial.gyp:device_serial_test_util', 32 'serial/serial.gyp:device_serial_test_util',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 'battery/battery_status_manager_linux_unittest.cc', 35 'battery/battery_status_manager_linux_unittest.cc',
36 'battery/battery_status_manager_win_unittest.cc', 36 'battery/battery_status_manager_win_unittest.cc',
37 'battery/battery_status_service_unittest.cc', 37 'battery/battery_status_service_unittest.cc',
38 'bluetooth/bluetooth_adapter_mac_unittest.mm', 38 'bluetooth/bluetooth_adapter_mac_unittest.mm',
39 'bluetooth/bluetooth_adapter_profile_chromeos_unittest.cc',
40 'bluetooth/bluetooth_adapter_unittest.cc', 39 'bluetooth/bluetooth_adapter_unittest.cc',
41 'bluetooth/bluetooth_adapter_win_unittest.cc', 40 'bluetooth/bluetooth_adapter_win_unittest.cc',
42 'bluetooth/bluetooth_advertisement_chromeos_unittest.cc',
43 'bluetooth/bluetooth_advertisement_unittest.cc', 41 'bluetooth/bluetooth_advertisement_unittest.cc',
44 'bluetooth/bluetooth_audio_sink_chromeos_unittest.cc',
45 'bluetooth/bluetooth_chromeos_unittest.cc',
46 'bluetooth/bluetooth_device_unittest.cc', 42 'bluetooth/bluetooth_device_unittest.cc',
47 'bluetooth/bluetooth_device_win_unittest.cc', 43 'bluetooth/bluetooth_device_win_unittest.cc',
48 'bluetooth/bluetooth_discovery_filter_unittest.cc', 44 'bluetooth/bluetooth_discovery_filter_unittest.cc',
49 'bluetooth/bluetooth_gatt_chromeos_unittest.cc',
50 'bluetooth/bluetooth_low_energy_win_unittest.cc', 45 'bluetooth/bluetooth_low_energy_win_unittest.cc',
51 'bluetooth/bluetooth_service_record_win_unittest.cc', 46 'bluetooth/bluetooth_service_record_win_unittest.cc',
52 'bluetooth/bluetooth_socket_chromeos_unittest.cc',
53 'bluetooth/bluetooth_task_manager_win_unittest.cc', 47 'bluetooth/bluetooth_task_manager_win_unittest.cc',
54 'bluetooth/bluetooth_uuid_unittest.cc', 48 'bluetooth/bluetooth_uuid_unittest.cc',
55 'bluetooth/test/bluetooth_test.cc', 49 'bluetooth/test/bluetooth_test.cc',
56 'bluetooth/test/bluetooth_test.h', 50 'bluetooth/test/bluetooth_test.h',
57 'bluetooth/test/bluetooth_test_android.cc', 51 'bluetooth/test/bluetooth_test_android.cc',
58 'bluetooth/test/bluetooth_test_android.h', 52 'bluetooth/test/bluetooth_test_android.h',
59 'bluetooth/test/bluetooth_test_mac.h', 53 'bluetooth/test/bluetooth_test_mac.h',
60 'bluetooth/test/bluetooth_test_mac.mm', 54 'bluetooth/test/bluetooth_test_mac.mm',
61 'bluetooth/test/test_bluetooth_adapter_observer.cc', 55 'bluetooth/test/test_bluetooth_adapter_observer.cc',
62 'bluetooth/test/test_bluetooth_adapter_observer.h', 56 'bluetooth/test/test_bluetooth_adapter_observer.h',
(...skipping 20 matching lines...) Expand all
83 'usb/usb_descriptors_unittest.cc', 77 'usb/usb_descriptors_unittest.cc',
84 'usb/usb_device_filter_unittest.cc', 78 'usb/usb_device_filter_unittest.cc',
85 'usb/usb_device_handle_unittest.cc', 79 'usb/usb_device_handle_unittest.cc',
86 'usb/usb_ids_unittest.cc', 80 'usb/usb_ids_unittest.cc',
87 'usb/usb_service_unittest.cc', 81 'usb/usb_service_unittest.cc',
88 'usb/webusb_descriptors_unittest.cc', 82 'usb/webusb_descriptors_unittest.cc',
89 ], 83 ],
90 'conditions': [ 84 'conditions': [
91 ['chromeos==1', { 85 ['chromeos==1', {
92 'dependencies': [ 86 'dependencies': [
93 '../build/linux/system.gyp:dbus',
94 '../chromeos/chromeos.gyp:chromeos_test_support', 87 '../chromeos/chromeos.gyp:chromeos_test_support',
95 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', 88 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
96 '../dbus/dbus.gyp:dbus',
97 ], 89 ],
98 'sources!': [ 90 'sources!': [
99 'battery/battery_status_manager_linux_unittest.cc', 91 'battery/battery_status_manager_linux_unittest.cc',
100 ], 92 ],
101 }], 93 }],
94 ['chromeos==1 or OS=="linux"', {
95 'dependencies': [
96 '../build/linux/system.gyp:dbus',
97 '../dbus/dbus.gyp:dbus',
98 ],
99 'sources': [
100 'bluetooth/bluetooth_adapter_profile_bluez_unittest.cc',
101 'bluetooth/bluetooth_advertisement_bluez_unittest.cc',
102 'bluetooth/bluetooth_audio_sink_bluez_unittest.cc',
103 'bluetooth/bluetooth_bluez_unittest.cc',
104 'bluetooth/bluetooth_gatt_bluez_unittest.cc',
105 'bluetooth/bluetooth_socket_bluez_unittest.cc',
106 ],
107 }],
102 ['OS=="android"', { 108 ['OS=="android"', {
103 'dependencies!': [ 109 'dependencies!': [
104 '../tools/usb_gadget/usb_gadget.gyp:usb_gadget', 110 '../tools/usb_gadget/usb_gadget.gyp:usb_gadget',
105 'battery/battery.gyp:device_battery', 111 'battery/battery.gyp:device_battery',
106 'devices_app/devices_app.gyp:devices_app_lib', 112 'devices_app/devices_app.gyp:devices_app_lib',
107 'usb/usb.gyp:device_usb', 113 'usb/usb.gyp:device_usb',
108 'usb/usb.gyp:device_usb_mocks', 114 'usb/usb.gyp:device_usb_mocks',
109 'serial/serial.gyp:device_serial', 115 'serial/serial.gyp:device_serial',
110 'serial/serial.gyp:device_serial_test_util', 116 'serial/serial.gyp:device_serial_test_util',
111 'hid/hid.gyp:device_hid', 117 'hid/hid.gyp:device_hid',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 '../build/isolate.gypi', 233 '../build/isolate.gypi',
228 ], 234 ],
229 'sources': [ 235 'sources': [
230 'device_unittests.isolate', 236 'device_unittests.isolate',
231 ] 237 ]
232 } 238 }
233 ] 239 ]
234 }] 240 }]
235 ], 241 ],
236 } 242 }
OLDNEW
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_advertisement.cc ('k') | extensions/browser/api/bluetooth/bluetooth_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698