tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 1 | # Copyright 2015 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. |
| 4 | |
| 5 | import("//build/config/features.gni") |
| 6 | import("//testing/test.gni") |
| 7 | |
erikchen | ceb2fff | 2015-04-27 17:50:54 | [diff] [blame] | 8 | if (is_mac) { |
| 9 | import("//build/config/mac/mac_sdk.gni") |
| 10 | } |
| 11 | |
scheib | 7a4cf04 | 2015-03-31 04:33:44 | [diff] [blame] | 12 | is_linux_without_udev = is_linux && !use_udev |
| 13 | is_linux_without_dbus = is_linux && !use_dbus |
| 14 | |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 15 | test("device_unittests") { |
| 16 | sources = [ |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 17 | "battery/battery_status_manager_win_unittest.cc", |
| 18 | "battery/battery_status_service_unittest.cc", |
scheib | 35fbdd4027 | 2015-04-29 21:31:54 | [diff] [blame] | 19 | "bluetooth/bluetooth_adapter_android_unittest.cc", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 20 | "bluetooth/bluetooth_adapter_mac_unittest.mm", |
| 21 | "bluetooth/bluetooth_adapter_profile_chromeos_unittest.cc", |
| 22 | "bluetooth/bluetooth_adapter_unittest.cc", |
| 23 | "bluetooth/bluetooth_adapter_win_unittest.cc", |
rkc | 02b1b8c | 2015-04-28 17:28:52 | [diff] [blame] | 24 | "bluetooth/bluetooth_advertisement_chromeos_unittest.cc", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 25 | "bluetooth/bluetooth_audio_sink_chromeos_unittest.cc", |
| 26 | "bluetooth/bluetooth_chromeos_unittest.cc", |
| 27 | "bluetooth/bluetooth_device_unittest.cc", |
| 28 | "bluetooth/bluetooth_device_win_unittest.cc", |
jpawlowski | f54d0154 | 2015-04-13 22:24:43 | [diff] [blame] | 29 | "bluetooth/bluetooth_discovery_filter_unittest.cc", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 30 | "bluetooth/bluetooth_gatt_chromeos_unittest.cc", |
| 31 | "bluetooth/bluetooth_low_energy_win_unittest.cc", |
| 32 | "bluetooth/bluetooth_service_record_win_unittest.cc", |
| 33 | "bluetooth/bluetooth_socket_chromeos_unittest.cc", |
| 34 | "bluetooth/bluetooth_task_manager_win_unittest.cc", |
| 35 | "bluetooth/bluetooth_uuid_unittest.cc", |
scheib | 42e6b49d | 2015-04-29 21:46:57 | [diff] [blame] | 36 | "bluetooth/test/test_bluetooth_adapter_observer.cc", |
| 37 | "bluetooth/test/test_bluetooth_adapter_observer.h", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 38 | "nfc/nfc_chromeos_unittest.cc", |
| 39 | "nfc/nfc_ndef_record_unittest.cc", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 40 | "test/run_all_unittests.cc", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 41 | ] |
| 42 | |
| 43 | deps = [ |
| 44 | "//base/test:test_support", |
| 45 | "//device/battery", |
| 46 | "//device/battery:mojo_bindings", |
| 47 | "//device/bluetooth", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 48 | "//device/nfc", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 49 | "//mojo/environment:chromium", |
| 50 | "//net", |
| 51 | "//testing/gmock", |
| 52 | "//testing/gtest", |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 53 | "//third_party/mojo/src/mojo/edk/system", |
| 54 | "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 55 | "//url", |
| 56 | ] |
| 57 | |
scheib | 7a4cf04 | 2015-03-31 04:33:44 | [diff] [blame] | 58 | if (!is_linux_without_dbus && !is_chromeos) { |
| 59 | sources += [ "battery/battery_status_manager_linux_unittest.cc" ] |
| 60 | } |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 61 | |
scheib | 7a4cf04 | 2015-03-31 04:33:44 | [diff] [blame] | 62 | # HID and Serial: |
scheib | cfdca0e | 2015-04-01 05:27:58 | [diff] [blame] | 63 | # Android doesn't compile. |
scheib | 7a4cf04 | 2015-03-31 04:33:44 | [diff] [blame] | 64 | # Linux, requires udev. |
scheib | cfdca0e | 2015-04-01 05:27:58 | [diff] [blame] | 65 | if (!is_linux_without_udev && !is_android) { |
scheib | 7a4cf04 | 2015-03-31 04:33:44 | [diff] [blame] | 66 | sources += [ |
| 67 | "hid/hid_connection_unittest.cc", |
| 68 | "hid/hid_device_filter_unittest.cc", |
| 69 | "hid/hid_report_descriptor_unittest.cc", |
| 70 | "hid/input_service_linux_unittest.cc", |
| 71 | "hid/test_report_descriptors.cc", |
| 72 | "hid/test_report_descriptors.h", |
| 73 | "serial/data_sink_unittest.cc", |
| 74 | "serial/data_source_unittest.cc", |
| 75 | "serial/serial_connection_unittest.cc", |
| 76 | "serial/serial_service_unittest.cc", |
| 77 | ] |
| 78 | deps += [ |
| 79 | "//device/hid", |
| 80 | "//device/serial", |
| 81 | "//device/serial:test_support", |
| 82 | ] |
| 83 | } |
| 84 | |
| 85 | if (use_udev) { |
| 86 | sources += [ "udev_linux/udev_unittest.cc" ] |
| 87 | deps += [ "//device/udev_linux" ] |
| 88 | } |
| 89 | |
scheib | cfdca0e | 2015-04-01 05:27:58 | [diff] [blame] | 90 | # USB does not compile on mobile platforms. |
| 91 | if (!is_android && !is_ios) { |
| 92 | sources += [ |
| 93 | "test/usb_test_gadget_impl.cc", |
| 94 | "usb/usb_context_unittest.cc", |
| 95 | "usb/usb_device_filter_unittest.cc", |
| 96 | "usb/usb_device_handle_unittest.cc", |
| 97 | "usb/usb_ids_unittest.cc", |
| 98 | "usb/usb_service_unittest.cc", |
| 99 | ] |
| 100 | deps += [ |
| 101 | "//device/usb", |
reillyg | cf9be26 | 2015-05-14 16:06:06 | [diff] [blame^] | 102 | "//device/usb:mocks", |
scheib | cfdca0e | 2015-04-01 05:27:58 | [diff] [blame] | 103 | "//third_party/libusb", |
| 104 | ] |
| 105 | } |
| 106 | |
scheib | 7a4cf04 | 2015-03-31 04:33:44 | [diff] [blame] | 107 | if (is_chromeos) { |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 108 | configs += [ "//build/config/linux:dbus" ] |
| 109 | |
| 110 | deps += [ |
| 111 | "//chromeos", |
| 112 | "//chromeos:test_support", |
| 113 | "//chromeos:test_support_without_gmock", |
| 114 | "//dbus", |
| 115 | ] |
| 116 | } |
| 117 | |
scheib | cfdca0e | 2015-04-01 05:27:58 | [diff] [blame] | 118 | if (is_posix && !is_android && !is_mac) { |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 119 | libs = [ "rt" ] |
| 120 | } |
| 121 | |
| 122 | if (is_mac) { |
| 123 | libs = [ "IOBluetooth.framework" ] |
erikchen | ceb2fff | 2015-04-27 17:50:54 | [diff] [blame] | 124 | |
| 125 | # In the OSX 10.10 SDK, CoreBluetooth became a top level framework. |
| 126 | # Previously, it was nested in IOBluetooth. In order for Chrome to run on |
| 127 | # OSes older than OSX 10.10, the top level CoreBluetooth framework must be |
| 128 | # weakly linked. |
| 129 | if (mac_sdk_version == "10.10") { |
| 130 | ldflags = [ "-weak_framework CoreBluetooth" ] |
| 131 | } |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 132 | } |
tfarina | cdc7e5d | 2015-02-23 09:52:24 | [diff] [blame] | 133 | } |