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 10 matching lines...) Expand all Loading... |
21 ], | 21 ], |
22 }], | 22 }], |
23 ], | 23 ], |
24 'variables': { | 24 'variables': { |
25 'mojom_base_output_dir': 'device/serial', | 25 'mojom_base_output_dir': 'device/serial', |
26 }, | 26 }, |
27 'includes': [ | 27 'includes': [ |
28 '../../mojo/public/tools/bindings/mojom_bindings_generator.gypi', | 28 '../../mojo/public/tools/bindings/mojom_bindings_generator.gypi', |
29 ], | 29 ], |
30 'dependencies': [ | 30 'dependencies': [ |
| 31 '../../mojo/mojo.gyp:mojo_cpp_bindings', |
31 '../../net/net.gyp:net', | 32 '../../net/net.gyp:net', |
32 ], | 33 ], |
| 34 'export_dependent_settings': [ |
| 35 '../../mojo/mojo.gyp:mojo_cpp_bindings', |
| 36 ], |
33 'sources': [ | 37 'sources': [ |
34 'serial.mojom', | 38 'serial.mojom', |
35 'serial_device_enumerator.cc', | 39 'serial_device_enumerator.cc', |
36 'serial_device_enumerator.h', | 40 'serial_device_enumerator.h', |
37 'serial_device_enumerator_linux.cc', | 41 'serial_device_enumerator_linux.cc', |
38 'serial_device_enumerator_linux.h', | 42 'serial_device_enumerator_linux.h', |
39 'serial_device_enumerator_mac.cc', | 43 'serial_device_enumerator_mac.cc', |
40 'serial_device_enumerator_mac.h', | 44 'serial_device_enumerator_mac.h', |
41 'serial_device_enumerator_win.cc', | 45 'serial_device_enumerator_win.cc', |
42 'serial_device_enumerator_win.h', | 46 'serial_device_enumerator_win.h', |
43 'serial_io_handler.cc', | 47 'serial_io_handler.cc', |
44 'serial_io_handler.h', | 48 'serial_io_handler.h', |
45 'serial_io_handler_posix.cc', | 49 'serial_io_handler_posix.cc', |
46 'serial_io_handler_posix.h', | 50 'serial_io_handler_posix.h', |
47 'serial_io_handler_win.cc', | 51 'serial_io_handler_win.cc', |
48 'serial_io_handler_win.h', | 52 'serial_io_handler_win.h', |
| 53 'serial_service_impl.cc', |
| 54 'serial_service_impl.h', |
49 ], | 55 ], |
50 }, | 56 }, |
51 ], | 57 ], |
52 } | 58 } |
OLD | NEW |