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

Side by Side Diff: device/device_tests.gyp

Issue 1415573014: Reland "Add Linux support for the Bluetooth API" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build fix. Created 5 years, 1 month 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_characteristic_unittest.cc', 45 'bluetooth/bluetooth_gatt_characteristic_unittest.cc',
50 'bluetooth/bluetooth_gatt_chromeos_unittest.cc',
51 'bluetooth/bluetooth_gatt_service_unittest.cc', 46 'bluetooth/bluetooth_gatt_service_unittest.cc',
52 'bluetooth/bluetooth_low_energy_win_unittest.cc', 47 'bluetooth/bluetooth_low_energy_win_unittest.cc',
53 'bluetooth/bluetooth_service_record_win_unittest.cc', 48 'bluetooth/bluetooth_service_record_win_unittest.cc',
54 'bluetooth/bluetooth_socket_chromeos_unittest.cc',
55 'bluetooth/bluetooth_task_manager_win_unittest.cc', 49 'bluetooth/bluetooth_task_manager_win_unittest.cc',
56 'bluetooth/bluetooth_uuid_unittest.cc', 50 'bluetooth/bluetooth_uuid_unittest.cc',
57 'bluetooth/test/bluetooth_test.cc', 51 'bluetooth/test/bluetooth_test.cc',
58 'bluetooth/test/bluetooth_test.h', 52 'bluetooth/test/bluetooth_test.h',
59 'bluetooth/test/bluetooth_test_android.cc', 53 'bluetooth/test/bluetooth_test_android.cc',
60 'bluetooth/test/bluetooth_test_android.h', 54 'bluetooth/test/bluetooth_test_android.h',
61 'bluetooth/test/bluetooth_test_mac.h', 55 'bluetooth/test/bluetooth_test_mac.h',
62 'bluetooth/test/bluetooth_test_mac.mm', 56 'bluetooth/test/bluetooth_test_mac.mm',
63 'bluetooth/test/test_bluetooth_adapter_observer.cc', 57 'bluetooth/test/test_bluetooth_adapter_observer.cc',
64 'bluetooth/test/test_bluetooth_adapter_observer.h', 58 'bluetooth/test/test_bluetooth_adapter_observer.h',
(...skipping 22 matching lines...) Expand all
87 'usb/usb_descriptors_unittest.cc', 81 'usb/usb_descriptors_unittest.cc',
88 'usb/usb_device_filter_unittest.cc', 82 'usb/usb_device_filter_unittest.cc',
89 'usb/usb_device_handle_unittest.cc', 83 'usb/usb_device_handle_unittest.cc',
90 'usb/usb_ids_unittest.cc', 84 'usb/usb_ids_unittest.cc',
91 'usb/usb_service_unittest.cc', 85 'usb/usb_service_unittest.cc',
92 'usb/webusb_descriptors_unittest.cc', 86 'usb/webusb_descriptors_unittest.cc',
93 ], 87 ],
94 'conditions': [ 88 'conditions': [
95 ['chromeos==1', { 89 ['chromeos==1', {
96 'dependencies': [ 90 'dependencies': [
97 '../build/linux/system.gyp:dbus',
98 '../chromeos/chromeos.gyp:chromeos_test_support', 91 '../chromeos/chromeos.gyp:chromeos_test_support',
99 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', 92 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
100 '../dbus/dbus.gyp:dbus',
101 ], 93 ],
102 'sources!': [ 94 'sources!': [
103 'battery/battery_status_manager_linux_unittest.cc', 95 'battery/battery_status_manager_linux_unittest.cc',
104 ], 96 ],
105 }], 97 }],
98 ['chromeos==1 or OS=="linux"', {
99 'dependencies': [
100 '../build/linux/system.gyp:dbus',
101 '../dbus/dbus.gyp:dbus',
102 ],
103 'sources': [
104 'bluetooth/bluetooth_adapter_profile_bluez_unittest.cc',
105 'bluetooth/bluetooth_advertisement_bluez_unittest.cc',
106 'bluetooth/bluetooth_audio_sink_bluez_unittest.cc',
107 'bluetooth/bluetooth_bluez_unittest.cc',
108 'bluetooth/bluetooth_gatt_bluez_unittest.cc',
109 'bluetooth/bluetooth_socket_bluez_unittest.cc',
110 ],
111 }],
106 ['OS=="android"', { 112 ['OS=="android"', {
107 'dependencies!': [ 113 'dependencies!': [
108 '../tools/usb_gadget/usb_gadget.gyp:usb_gadget', 114 '../tools/usb_gadget/usb_gadget.gyp:usb_gadget',
109 'battery/battery.gyp:device_battery', 115 'battery/battery.gyp:device_battery',
110 'devices_app/devices_app.gyp:devices_app_lib', 116 'devices_app/devices_app.gyp:devices_app_lib',
111 'usb/usb.gyp:device_usb', 117 'usb/usb.gyp:device_usb',
112 'usb/usb.gyp:device_usb_mocks', 118 'usb/usb.gyp:device_usb_mocks',
113 'serial/serial.gyp:device_serial', 119 'serial/serial.gyp:device_serial',
114 'serial/serial.gyp:device_serial_test_util', 120 'serial/serial.gyp:device_serial_test_util',
115 'hid/hid.gyp:device_hid', 121 'hid/hid.gyp:device_hid',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 '../build/isolate.gypi', 256 '../build/isolate.gypi',
251 ], 257 ],
252 'sources': [ 258 'sources': [
253 'device_unittests.isolate', 259 'device_unittests.isolate',
254 ] 260 ]
255 } 261 }
256 ] 262 ]
257 }] 263 }]
258 ], 264 ],
259 } 265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698