OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { |
(...skipping 18 matching lines...) Expand all Loading... |
29 ], | 29 ], |
30 'dependencies': [ | 30 'dependencies': [ |
31 '../../mojo/mojo.gyp:mojo_cpp_bindings', | 31 '../../mojo/mojo.gyp:mojo_cpp_bindings', |
32 '../../net/net.gyp:net', | 32 '../../net/net.gyp:net', |
33 ], | 33 ], |
34 'export_dependent_settings': [ | 34 'export_dependent_settings': [ |
35 '../../mojo/mojo.gyp:mojo_cpp_bindings', | 35 '../../mojo/mojo.gyp:mojo_cpp_bindings', |
36 ], | 36 ], |
37 'sources': [ | 37 'sources': [ |
38 'serial.mojom', | 38 'serial.mojom', |
| 39 'serial_connection.cc', |
| 40 'serial_connection.h', |
| 41 'serial_connection_factory.cc', |
| 42 'serial_connection_factory.h', |
39 'serial_device_enumerator.cc', | 43 'serial_device_enumerator.cc', |
40 'serial_device_enumerator.h', | 44 'serial_device_enumerator.h', |
41 'serial_device_enumerator_linux.cc', | 45 'serial_device_enumerator_linux.cc', |
42 'serial_device_enumerator_linux.h', | 46 'serial_device_enumerator_linux.h', |
43 'serial_device_enumerator_mac.cc', | 47 'serial_device_enumerator_mac.cc', |
44 'serial_device_enumerator_mac.h', | 48 'serial_device_enumerator_mac.h', |
45 'serial_device_enumerator_win.cc', | 49 'serial_device_enumerator_win.cc', |
46 'serial_device_enumerator_win.h', | 50 'serial_device_enumerator_win.h', |
47 'serial_io_handler.cc', | 51 'serial_io_handler.cc', |
48 'serial_io_handler.h', | 52 'serial_io_handler.h', |
49 'serial_io_handler_posix.cc', | 53 'serial_io_handler_posix.cc', |
50 'serial_io_handler_posix.h', | 54 'serial_io_handler_posix.h', |
51 'serial_io_handler_win.cc', | 55 'serial_io_handler_win.cc', |
52 'serial_io_handler_win.h', | 56 'serial_io_handler_win.h', |
53 'serial_service_impl.cc', | 57 'serial_service_impl.cc', |
54 'serial_service_impl.h', | 58 'serial_service_impl.h', |
55 ], | 59 ], |
56 }, | 60 }, |
| 61 { |
| 62 # GN version: //device/serial:test_util |
| 63 'target_name': 'device_serial_test_util', |
| 64 'type': 'static_library', |
| 65 'dependencies': [ |
| 66 'device_serial', |
| 67 ], |
| 68 'sources': [ |
| 69 'test_serial_io_handler.cc', |
| 70 'test_serial_io_handler.h', |
| 71 ], |
| 72 }, |
57 ], | 73 ], |
58 } | 74 } |
OLD | NEW |