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

Side by Side Diff: device/device_tests.gyp

Issue 401563002: Add a partial Mojo serial connection interface and implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 6 years, 5 months 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | device/serial/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
11 'target_name': 'device_unittests', 11 'target_name': 'device_unittests',
12 'type': '<(gtest_target_type)', 12 'type': '<(gtest_target_type)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:test_support_base', 14 '../base/base.gyp:test_support_base',
15 '../mojo/mojo.gyp:mojo_environment_chromium', 15 '../mojo/mojo.gyp:mojo_environment_chromium',
16 '../mojo/mojo.gyp:mojo_system_impl', 16 '../mojo/mojo.gyp:mojo_system_impl',
17 '../testing/gmock.gyp:gmock', 17 '../testing/gmock.gyp:gmock',
18 '../testing/gtest.gyp:gtest', 18 '../testing/gtest.gyp:gtest',
19 'bluetooth/bluetooth.gyp:device_bluetooth', 19 'bluetooth/bluetooth.gyp:device_bluetooth',
20 'bluetooth/bluetooth.gyp:device_bluetooth_mocks', 20 'bluetooth/bluetooth.gyp:device_bluetooth_mocks',
21 'nfc/nfc.gyp:device_nfc', 21 'nfc/nfc.gyp:device_nfc',
22 'usb/usb.gyp:device_usb', 22 'usb/usb.gyp:device_usb',
23 'hid/hid.gyp:device_hid', 23 'hid/hid.gyp:device_hid',
24 'serial/serial.gyp:device_serial', 24 'serial/serial.gyp:device_serial',
25 'serial/serial.gyp:device_serial_test_util',
25 ], 26 ],
26 'sources': [ 27 'sources': [
27 'bluetooth/bluetooth_adapter_mac_unittest.mm', 28 'bluetooth/bluetooth_adapter_mac_unittest.mm',
28 'bluetooth/bluetooth_adapter_unittest.cc', 29 'bluetooth/bluetooth_adapter_unittest.cc',
29 'bluetooth/bluetooth_adapter_win_unittest.cc', 30 'bluetooth/bluetooth_adapter_win_unittest.cc',
30 'bluetooth/bluetooth_device_unittest.cc', 31 'bluetooth/bluetooth_device_unittest.cc',
31 'bluetooth/bluetooth_device_win_unittest.cc', 32 'bluetooth/bluetooth_device_win_unittest.cc',
32 'bluetooth/bluetooth_chromeos_unittest.cc', 33 'bluetooth/bluetooth_chromeos_unittest.cc',
33 'bluetooth/bluetooth_gatt_chromeos_unittest.cc', 34 'bluetooth/bluetooth_gatt_chromeos_unittest.cc',
34 'bluetooth/bluetooth_low_energy_win_unittest.cc', 35 'bluetooth/bluetooth_low_energy_win_unittest.cc',
35 'bluetooth/bluetooth_service_record_win_unittest.cc', 36 'bluetooth/bluetooth_service_record_win_unittest.cc',
36 'bluetooth/bluetooth_socket_chromeos_unittest.cc', 37 'bluetooth/bluetooth_socket_chromeos_unittest.cc',
37 'bluetooth/bluetooth_task_manager_win_unittest.cc', 38 'bluetooth/bluetooth_task_manager_win_unittest.cc',
38 'bluetooth/bluetooth_uuid_unittest.cc', 39 'bluetooth/bluetooth_uuid_unittest.cc',
39 'nfc/nfc_chromeos_unittest.cc', 40 'nfc/nfc_chromeos_unittest.cc',
40 'nfc/nfc_ndef_record_unittest.cc', 41 'nfc/nfc_ndef_record_unittest.cc',
41 'usb/usb_ids_unittest.cc', 42 'usb/usb_ids_unittest.cc',
42 'hid/hid_connection_unittest.cc', 43 'hid/hid_connection_unittest.cc',
43 'hid/hid_report_descriptor_unittest.cc', 44 'hid/hid_report_descriptor_unittest.cc',
44 'hid/hid_service_unittest.cc', 45 'hid/hid_service_unittest.cc',
45 'hid/input_service_linux_unittest.cc', 46 'hid/input_service_linux_unittest.cc',
47 'serial/serial_connection_unittest.cc',
46 'serial/serial_service_unittest.cc', 48 'serial/serial_service_unittest.cc',
47 'test/run_all_unittests.cc', 49 'test/run_all_unittests.cc',
48 ], 50 ],
49 'conditions': [ 51 'conditions': [
50 ['chromeos==1', { 52 ['chromeos==1', {
51 'dependencies': [ 53 'dependencies': [
52 '../build/linux/system.gyp:dbus', 54 '../build/linux/system.gyp:dbus',
53 '../chromeos/chromeos.gyp:chromeos_test_support', 55 '../chromeos/chromeos.gyp:chromeos_test_support',
54 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', 56 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
55 '../dbus/dbus.gyp:dbus', 57 '../dbus/dbus.gyp:dbus',
(...skipping 22 matching lines...) Expand all
78 'hid/hid.gyp:device_hid', 80 'hid/hid.gyp:device_hid',
79 ], 81 ],
80 'sources/': [ 82 'sources/': [
81 ['exclude', '^hid/'], 83 ['exclude', '^hid/'],
82 ], 84 ],
83 }], 85 }],
84 ], 86 ],
85 }, 87 },
86 ], 88 ],
87 } 89 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | device/serial/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698