| # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| { |
| 'variables': { |
| 'chromium_code': 1, |
| }, |
| 'targets': [ |
| { |
| 'target_name': 'device_unittests', |
| 'type': '<(gtest_target_type)', |
| 'dependencies': [ |
| '../base/base.gyp:test_support_base', |
| '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| '../testing/gmock.gyp:gmock', |
| '../testing/gtest.gyp:gtest', |
| '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', |
| '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| '../tools/usb_gadget/usb_gadget.gyp:usb_gadget', |
| 'battery/battery.gyp:device_battery', |
| 'battery/battery.gyp:device_battery_mojo_bindings', |
| 'bluetooth/bluetooth.gyp:device_bluetooth', |
| 'bluetooth/bluetooth.gyp:device_bluetooth_mocks', |
| 'core/core.gyp:device_core', |
| 'core/core.gyp:device_core_mocks', |
| 'devices_app/devices_app.gyp:devices_app_lib', |
| 'nfc/nfc.gyp:device_nfc', |
| 'usb/usb.gyp:device_usb', |
| 'usb/usb.gyp:device_usb_mocks', |
| 'hid/hid.gyp:device_hid', |
| 'hid/hid.gyp:device_hid_mocks', |
| 'serial/serial.gyp:device_serial', |
| 'serial/serial.gyp:device_serial_test_util', |
| ], |
| 'sources': [ |
| 'battery/battery_status_manager_linux_unittest.cc', |
| 'battery/battery_status_manager_win_unittest.cc', |
| 'battery/battery_status_service_unittest.cc', |
| 'bluetooth/bluetooth_adapter_mac_unittest.mm', |
| 'bluetooth/bluetooth_adapter_unittest.cc', |
| 'bluetooth/bluetooth_adapter_win_unittest.cc', |
| 'bluetooth/bluetooth_advertisement_unittest.cc', |
| 'bluetooth/bluetooth_device_unittest.cc', |
| 'bluetooth/bluetooth_device_win_unittest.cc', |
| 'bluetooth/bluetooth_discovery_filter_unittest.cc', |
| 'bluetooth/bluetooth_gatt_characteristic_unittest.cc', |
| 'bluetooth/bluetooth_gatt_service_unittest.cc', |
| 'bluetooth/bluetooth_low_energy_win_unittest.cc', |
| 'bluetooth/bluetooth_service_record_win_unittest.cc', |
| 'bluetooth/bluetooth_task_manager_win_unittest.cc', |
| 'bluetooth/bluetooth_uuid_unittest.cc', |
| 'bluetooth/test/bluetooth_test.cc', |
| 'bluetooth/test/bluetooth_test.h', |
| 'bluetooth/test/bluetooth_test_android.cc', |
| 'bluetooth/test/bluetooth_test_android.h', |
| 'bluetooth/test/bluetooth_test_mac.h', |
| 'bluetooth/test/bluetooth_test_mac.mm', |
| 'bluetooth/test/test_bluetooth_adapter_observer.cc', |
| 'bluetooth/test/test_bluetooth_adapter_observer.h', |
| 'devices_app/usb/device_impl_unittest.cc', |
| 'devices_app/usb/device_manager_impl_unittest.cc', |
| 'devices_app/usb/fake_permission_provider.cc', |
| 'devices_app/usb/fake_permission_provider.h', |
| 'hid/hid_connection_unittest.cc', |
| 'hid/hid_device_filter_unittest.cc', |
| 'hid/hid_report_descriptor_unittest.cc', |
| 'hid/input_service_linux_unittest.cc', |
| 'hid/test_report_descriptors.cc', |
| 'hid/test_report_descriptors.h', |
| 'nfc/nfc_chromeos_unittest.cc', |
| 'nfc/nfc_ndef_record_unittest.cc', |
| 'serial/data_sink_unittest.cc', |
| 'serial/data_source_unittest.cc', |
| 'serial/serial_connection_unittest.cc', |
| "serial/serial_io_handler_posix_unittest.cc", |
| 'serial/serial_service_unittest.cc', |
| 'test/run_all_unittests.cc', |
| 'test/test_device_client.cc', |
| 'test/test_device_client.h', |
| 'test/usb_test_gadget_impl.cc', |
| 'usb/usb_descriptors_unittest.cc', |
| 'usb/usb_device_filter_unittest.cc', |
| 'usb/usb_device_handle_unittest.cc', |
| 'usb/usb_ids_unittest.cc', |
| 'usb/usb_service_unittest.cc', |
| 'usb/webusb_descriptors_unittest.cc', |
| ], |
| 'conditions': [ |
| ['chromeos==1', { |
| 'dependencies': [ |
| '../chromeos/chromeos.gyp:chromeos_test_support', |
| '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', |
| ], |
| 'sources!': [ |
| 'battery/battery_status_manager_linux_unittest.cc', |
| ], |
| }], |
| ['chromeos==1 or OS=="linux"', { |
| 'dependencies': [ |
| '../build/linux/system.gyp:dbus', |
| '../dbus/dbus.gyp:dbus', |
| ], |
| 'sources': [ |
| 'bluetooth/bluetooth_adapter_profile_bluez_unittest.cc', |
| 'bluetooth/bluetooth_advertisement_bluez_unittest.cc', |
| 'bluetooth/bluetooth_audio_sink_bluez_unittest.cc', |
| 'bluetooth/bluetooth_bluez_unittest.cc', |
| 'bluetooth/bluetooth_gatt_bluez_unittest.cc', |
| 'bluetooth/bluetooth_socket_bluez_unittest.cc', |
| ], |
| }], |
| ['OS=="android"', { |
| 'dependencies!': [ |
| 'battery/battery.gyp:device_battery', |
| 'serial/serial.gyp:device_serial', |
| 'serial/serial.gyp:device_serial_test_util', |
| 'hid/hid.gyp:device_hid', |
| ], |
| 'dependencies': [ |
| '../testing/android/native_test.gyp:native_test_native_code', |
| 'device_bluetooth_test_java', |
| 'device_bluetooth_test_jni_headers', |
| ], |
| 'sources/': [ |
| ['exclude', '(^|/)hid'], |
| ['exclude', '(^|/)serial'], |
| ], |
| 'sources!': [ |
| 'battery/battery_status_service_unittest.cc', |
| 'usb/usb_context_unittest.cc', |
| ], |
| }], |
| ['OS=="mac"', { |
| 'dependencies': [ |
| '../third_party/ocmock/ocmock.gyp:ocmock', |
| ], |
| 'link_settings': { |
| 'libraries': [ |
| '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', |
| ], |
| }, |
| 'xcode_settings' : { |
| 'OTHER_LDFLAGS' : [ |
| '-ObjC', |
| ], |
| }, |
| }], |
| ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 'conditions': [ |
| ['use_allocator!="none"', { |
| 'dependencies': [ |
| '../base/allocator/allocator.gyp:allocator', |
| ], |
| }], |
| ], |
| }], |
| ['use_udev==1', { |
| 'dependencies': [ |
| 'udev_linux/udev.gyp:udev_linux', |
| ], |
| 'sources': [ |
| 'udev_linux/udev_unittest.cc', |
| ], |
| }], |
| ['OS=="linux" and use_udev==0', { |
| # Udev is the only Linux implementation. If we're compiling without |
| # Udev, disable these unittests. |
| 'dependencies!': [ |
| 'hid/hid.gyp:device_hid', |
| 'serial/serial.gyp:device_serial', |
| 'serial/serial.gyp:device_serial_test_util', |
| ], |
| 'sources/': [ |
| ['exclude', '^serial/'], |
| ['exclude', '^hid/'], |
| ], |
| }], |
| ['use_dbus==0', { |
| 'sources!': [ |
| 'battery/battery_status_manager_linux_unittest.cc', |
| ], |
| }], |
| ], |
| }, |
| ], |
| 'conditions': [ |
| ['OS=="android"', { |
| 'targets': [ |
| { |
| 'target_name': 'device_unittests_apk', |
| 'type': 'none', |
| 'dependencies': [ |
| 'device_unittests', |
| ], |
| 'variables': { |
| 'test_suite_name': 'device_unittests', |
| }, |
| 'includes': [ '../build/apk_test.gypi' ], |
| }, |
| { |
| 'target_name': 'device_bluetooth_test_jni_headers', |
| 'type': 'none', |
| 'sources': [ |
| 'bluetooth/test/android/java/src/org/chromium/device/bluetooth/Fakes.java', |
| ], |
| 'variables': { |
| 'jni_gen_package': 'device_bluetooth', |
| }, |
| 'includes': [ '../build/jni_generator.gypi' ], |
| }, |
| { |
| 'target_name': 'device_bluetooth_test_java', |
| 'type': 'none', |
| 'dependencies': [ |
| 'bluetooth/bluetooth.gyp:device_bluetooth_java', |
| ], |
| 'variables': { |
| 'java_in_dir': 'bluetooth/test/android/java', |
| }, |
| 'includes': [ '../build/java.gypi' ], |
| }, |
| ], |
| 'conditions': [ |
| ['test_isolation_mode != "noop"', { |
| 'targets': [ |
| { |
| 'target_name': 'device_unittests_apk_run', |
| 'type': 'none', |
| 'dependencies': [ |
| 'device_unittests_apk', |
| ], |
| 'includes': [ |
| '../build/isolate.gypi', |
| ], |
| 'sources': [ |
| 'device_unittests_apk.isolate', |
| ], |
| }, |
| ], |
| }], |
| ], |
| }], |
| ['test_isolation_mode != "noop"', { |
| 'targets': [ |
| { |
| 'target_name': 'device_unittests_run', |
| 'type': 'none', |
| 'dependencies': [ |
| 'device_unittests', |
| ], |
| 'includes': [ |
| '../build/isolate.gypi', |
| ], |
| 'sources': [ |
| 'device_unittests.isolate', |
| ] |
| } |
| ] |
| }] |
| ], |
| } |