Fix lint new api error in SystemMessageHandler.
[chromium-blink-merge.git] / device / device_tests.gyp
blob924e7947ea1f7151018ed9c4391ee1addbc461a6
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
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'device_unittests',
12       'type': '<(gtest_target_type)',
13       'dependencies': [
14         '../base/base.gyp:test_support_base',
15         '../mojo/mojo_base.gyp:mojo_environment_chromium',
16         '../testing/gmock.gyp:gmock',
17         '../testing/gtest.gyp:gtest',
18         '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
19         '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
20         '../tools/usb_gadget/usb_gadget.gyp:usb_gadget',
21         'battery/battery.gyp:device_battery',
22         'battery/battery.gyp:device_battery_mojo_bindings',
23         'bluetooth/bluetooth.gyp:device_bluetooth',
24         'bluetooth/bluetooth.gyp:device_bluetooth_mocks',
25         'core/core.gyp:device_core',
26         'devices_app/devices_app.gyp:devices_app_lib',
27         'nfc/nfc.gyp:device_nfc',
28         'usb/usb.gyp:device_usb',
29         'usb/usb.gyp:device_usb_mocks',
30         'hid/hid.gyp:device_hid',
31         'serial/serial.gyp:device_serial',
32         'serial/serial.gyp:device_serial_test_util',
33       ],
34       'sources': [
35         'battery/battery_status_manager_linux_unittest.cc',
36         'battery/battery_status_manager_win_unittest.cc',
37         'battery/battery_status_service_unittest.cc',
38         'bluetooth/bluetooth_adapter_mac_unittest.mm',
39         'bluetooth/bluetooth_adapter_profile_chromeos_unittest.cc',
40         'bluetooth/bluetooth_adapter_unittest.cc',
41         'bluetooth/bluetooth_adapter_win_unittest.cc',
42         'bluetooth/bluetooth_advertisement_chromeos_unittest.cc',
43         'bluetooth/bluetooth_audio_sink_chromeos_unittest.cc',
44         'bluetooth/bluetooth_chromeos_unittest.cc',
45         'bluetooth/bluetooth_device_unittest.cc',
46         'bluetooth/bluetooth_device_win_unittest.cc',
47         'bluetooth/bluetooth_discovery_filter_unittest.cc',
48         'bluetooth/bluetooth_gatt_chromeos_unittest.cc',
49         'bluetooth/bluetooth_low_energy_win_unittest.cc',
50         'bluetooth/bluetooth_service_record_win_unittest.cc',
51         'bluetooth/bluetooth_socket_chromeos_unittest.cc',
52         'bluetooth/bluetooth_task_manager_win_unittest.cc',
53         'bluetooth/bluetooth_uuid_unittest.cc',
54         'bluetooth/test/bluetooth_test.cc',
55         'bluetooth/test/bluetooth_test.h',
56         'bluetooth/test/bluetooth_test_android.cc',
57         'bluetooth/test/bluetooth_test_android.h',
58         'bluetooth/test/test_bluetooth_adapter_observer.cc',
59         'bluetooth/test/test_bluetooth_adapter_observer.h',
60         'devices_app/usb/device_impl_unittest.cc',
61         'devices_app/usb/device_manager_impl_unittest.cc',
62         'hid/hid_connection_unittest.cc',
63         'hid/hid_device_filter_unittest.cc',
64         'hid/hid_report_descriptor_unittest.cc',
65         'hid/input_service_linux_unittest.cc',
66         'hid/test_report_descriptors.cc',
67         'hid/test_report_descriptors.h',
68         'nfc/nfc_chromeos_unittest.cc',
69         'nfc/nfc_ndef_record_unittest.cc',
70         'serial/data_sink_unittest.cc',
71         'serial/data_source_unittest.cc',
72         'serial/serial_connection_unittest.cc',
73         'serial/serial_service_unittest.cc',
74         'test/run_all_unittests.cc',
75         'test/usb_test_gadget_impl.cc',
76         'usb/usb_context_unittest.cc',
77         'usb/usb_device_filter_unittest.cc',
78         'usb/usb_device_handle_unittest.cc',
79         'usb/usb_ids_unittest.cc',
80         'usb/usb_service_unittest.cc',
81       ],
82       'conditions': [
83         ['chromeos==1', {
84           'dependencies': [
85             '../build/linux/system.gyp:dbus',
86             '../chromeos/chromeos.gyp:chromeos_test_support',
87             '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
88             '../dbus/dbus.gyp:dbus',
89           ],
90           'sources!': [
91             'battery/battery_status_manager_linux_unittest.cc',
92           ],
93         }],
94         ['OS=="android"', {
95           'dependencies!': [
96             '../tools/usb_gadget/usb_gadget.gyp:usb_gadget',
97             'devices_app/devices_app.gyp:devices_app_lib',
98             'usb/usb.gyp:device_usb',
99             'usb/usb.gyp:device_usb_mocks',
100             'serial/serial.gyp:device_serial',
101             'serial/serial.gyp:device_serial_test_util',
102             'hid/hid.gyp:device_hid',
103           ],
104           'dependencies': [
105             '../testing/android/native_test.gyp:native_test_native_code',
106             'device_bluetooth_test_java',
107             'device_bluetooth_test_jni_headers',
108           ],
109           'sources/': [
110             ['exclude', '(^|/)hid'],
111             ['exclude', '(^|/)serial'],
112             ['exclude', '(^|/)usb'],
113           ],
114         }],
115         ['OS=="mac"', {
116           'dependencies': [
117             '../third_party/ocmock/ocmock.gyp:ocmock',
118           ],
119           'link_settings': {
120             'libraries': [
121               '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
122             ],
123           },
124           'xcode_settings' : {
125             'OTHER_LDFLAGS' : [
126               '-ObjC',
127             ],
128           },
129         }],
130         ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
131           'conditions': [
132             ['use_allocator!="none"', {
133               'dependencies': [
134                 '../base/allocator/allocator.gyp:allocator',
135               ],
136             }],
137           ],
138         }],
139         ['use_udev==1', {
140           'dependencies': [
141             'udev_linux/udev.gyp:udev_linux',
142           ],
143           'sources': [
144             'udev_linux/udev_unittest.cc',
145           ],
146         }],
147         ['OS=="linux" and use_udev==0', {
148           # Udev is the only Linux implementation. If we're compiling without
149           # Udev, disable these unittests.
150           'dependencies!': [
151             'hid/hid.gyp:device_hid',
152             'serial/serial.gyp:device_serial',
153             'serial/serial.gyp:device_serial_test_util',
154           ],
155           'sources/': [
156             ['exclude', '^serial/'],
157             ['exclude', '^hid/'],
158           ],
159         }],
160         ['use_dbus==0', {
161           'sources!': [
162             'battery/battery_status_manager_linux_unittest.cc',
163           ],
164         }],
165       ],
166     },
167   ],
168   'conditions': [
169     ['OS=="android"', {
170       'targets': [
171         {
172           'target_name': 'device_unittests_apk',
173           'type': 'none',
174           'dependencies': [
175             'device_unittests',
176           ],
177           'variables': {
178             'test_suite_name': 'device_unittests',
179           },
180           'includes': [ '../build/apk_test.gypi' ],
181         },
182         {
183           'target_name': 'device_bluetooth_test_jni_headers',
184           'type': 'none',
185           'sources': [
186             'bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java',
187           ],
188           'variables': {
189             'jni_gen_package': 'device_bluetooth',
190           },
191           'includes': [ '../build/jni_generator.gypi' ],
192         },
193         {
194           'target_name': 'device_bluetooth_test_java',
195           'type': 'none',
196           'dependencies': [
197             'bluetooth/bluetooth.gyp:device_bluetooth_java',
198           ],
199           'variables': {
200             'java_in_dir': 'bluetooth/test/android/java',
201           },
202           'includes': [ '../build/java.gypi' ],
203         },
204       ],
205     }],
206     ['test_isolation_mode != "noop"', {
207       'targets': [
208         {
209           'target_name': 'device_unittests_run',
210           'type': 'none',
211           'dependencies': [
212             'device_unittests',
213           ],
214           'includes': [
215             '../build/isolate.gypi',
216           ],
217           'sources': [
218             'device_unittests.isolate',
219           ]
220         }
221       ]
222     }]
223   ],