Update V8 to version 4.6.48.
[chromium-blink-merge.git] / device / device_tests.gyp
blob0d4074c4309c43176b80fd482a635634f89ff465
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/bluetooth_test_mac.h',
59         'bluetooth/test/bluetooth_test_mac.mm',
60         'bluetooth/test/test_bluetooth_adapter_observer.cc',
61         'bluetooth/test/test_bluetooth_adapter_observer.h',
62         'devices_app/usb/device_impl_unittest.cc',
63         'devices_app/usb/device_manager_impl_unittest.cc',
64         'hid/hid_connection_unittest.cc',
65         'hid/hid_device_filter_unittest.cc',
66         'hid/hid_report_descriptor_unittest.cc',
67         'hid/input_service_linux_unittest.cc',
68         'hid/test_report_descriptors.cc',
69         'hid/test_report_descriptors.h',
70         'nfc/nfc_chromeos_unittest.cc',
71         'nfc/nfc_ndef_record_unittest.cc',
72         'serial/data_sink_unittest.cc',
73         'serial/data_source_unittest.cc',
74         'serial/serial_connection_unittest.cc',
75         "serial/serial_io_handler_posix_unittest.cc",
76         'serial/serial_service_unittest.cc',
77         'test/run_all_unittests.cc',
78         'test/usb_test_gadget_impl.cc',
79         'usb/usb_context_unittest.cc',
80         'usb/usb_device_filter_unittest.cc',
81         'usb/usb_device_handle_unittest.cc',
82         'usb/usb_ids_unittest.cc',
83         'usb/usb_service_unittest.cc',
84       ],
85       'conditions': [
86         ['chromeos==1', {
87           'dependencies': [
88             '../build/linux/system.gyp:dbus',
89             '../chromeos/chromeos.gyp:chromeos_test_support',
90             '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
91             '../dbus/dbus.gyp:dbus',
92           ],
93           'sources!': [
94             'battery/battery_status_manager_linux_unittest.cc',
95           ],
96         }],
97         ['OS=="android"', {
98           'dependencies!': [
99             '../tools/usb_gadget/usb_gadget.gyp:usb_gadget',
100             'devices_app/devices_app.gyp:devices_app_lib',
101             'usb/usb.gyp:device_usb',
102             'usb/usb.gyp:device_usb_mocks',
103             'serial/serial.gyp:device_serial',
104             'serial/serial.gyp:device_serial_test_util',
105             'hid/hid.gyp:device_hid',
106           ],
107           'dependencies': [
108             '../testing/android/native_test.gyp:native_test_native_code',
109             'device_bluetooth_test_java',
110             'device_bluetooth_test_jni_headers',
111           ],
112           'sources/': [
113             ['exclude', '(^|/)hid'],
114             ['exclude', '(^|/)serial'],
115             ['exclude', '(^|/)usb'],
116           ],
117         }],
118         ['OS=="mac"', {
119           'dependencies': [
120             '../third_party/ocmock/ocmock.gyp:ocmock',
121           ],
122           'link_settings': {
123             'libraries': [
124               '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
125             ],
126           },
127           'xcode_settings' : {
128             'OTHER_LDFLAGS' : [
129               '-ObjC',
130             ],
131           },
132         }],
133         ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
134           'conditions': [
135             ['use_allocator!="none"', {
136               'dependencies': [
137                 '../base/allocator/allocator.gyp:allocator',
138               ],
139             }],
140           ],
141         }],
142         ['use_udev==1', {
143           'dependencies': [
144             'udev_linux/udev.gyp:udev_linux',
145           ],
146           'sources': [
147             'udev_linux/udev_unittest.cc',
148           ],
149         }],
150         ['OS=="linux" and use_udev==0', {
151           # Udev is the only Linux implementation. If we're compiling without
152           # Udev, disable these unittests.
153           'dependencies!': [
154             'hid/hid.gyp:device_hid',
155             'serial/serial.gyp:device_serial',
156             'serial/serial.gyp:device_serial_test_util',
157           ],
158           'sources/': [
159             ['exclude', '^serial/'],
160             ['exclude', '^hid/'],
161           ],
162         }],
163         ['use_dbus==0', {
164           'sources!': [
165             'battery/battery_status_manager_linux_unittest.cc',
166           ],
167         }],
168       ],
169     },
170   ],
171   'conditions': [
172     ['OS=="android"', {
173       'targets': [
174         {
175           'target_name': 'device_unittests_apk',
176           'type': 'none',
177           'dependencies': [
178             'device_unittests',
179           ],
180           'variables': {
181             'test_suite_name': 'device_unittests',
182           },
183           'includes': [ '../build/apk_test.gypi' ],
184         },
185         {
186           'target_name': 'device_bluetooth_test_jni_headers',
187           'type': 'none',
188           'sources': [
189             'bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java',
190           ],
191           'variables': {
192             'jni_gen_package': 'device_bluetooth',
193           },
194           'includes': [ '../build/jni_generator.gypi' ],
195         },
196         {
197           'target_name': 'device_bluetooth_test_java',
198           'type': 'none',
199           'dependencies': [
200             'bluetooth/bluetooth.gyp:device_bluetooth_java',
201           ],
202           'variables': {
203             'java_in_dir': 'bluetooth/test/android/java',
204           },
205           'includes': [ '../build/java.gypi' ],
206         },
207       ],
208     }],
209     ['test_isolation_mode != "noop"', {
210       'targets': [
211         {
212           'target_name': 'device_unittests_run',
213           'type': 'none',
214           'dependencies': [
215             'device_unittests',
216           ],
217           'includes': [
218             '../build/isolate.gypi',
219           ],
220           'sources': [
221             'device_unittests.isolate',
222           ]
223         }
224       ]
225     }]
226   ],