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 13 matching lines...) Expand all Loading... |
24 'serial_serialization.mojom', | 24 'serial_serialization.mojom', |
25 ], | 25 ], |
26 }, | 26 }, |
27 { | 27 { |
28 # GN version: //device/serial | 28 # GN version: //device/serial |
29 'target_name': 'device_serial', | 29 'target_name': 'device_serial', |
30 'type': 'static_library', | 30 'type': 'static_library', |
31 'conditions': [ | 31 'conditions': [ |
32 ['use_udev == 1', { | 32 ['use_udev == 1', { |
33 'dependencies': [ | 33 'dependencies': [ |
34 '../../build/linux/system.gyp:udev', | 34 '../udev_linux/udev.gyp:udev_linux', |
35 ], | 35 ], |
36 }, { | 36 }, { |
37 'sources!': [ | 37 'sources!': [ |
38 'serial_device_enumerator_linux.cc', | 38 'serial_device_enumerator_linux.cc', |
39 'serial_device_enumerator_linux.h', | 39 'serial_device_enumerator_linux.h', |
40 ], | 40 ], |
41 }], | 41 }], |
42 ], | 42 ], |
43 'dependencies': [ | 43 'dependencies': [ |
44 'device_serial_mojo', | 44 'device_serial_mojo', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 'device_serial', | 98 'device_serial', |
99 'device_serial_mojo', | 99 'device_serial_mojo', |
100 ], | 100 ], |
101 'sources': [ | 101 'sources': [ |
102 'test_serial_io_handler.cc', | 102 'test_serial_io_handler.cc', |
103 'test_serial_io_handler.h', | 103 'test_serial_io_handler.h', |
104 ], | 104 ], |
105 }, | 105 }, |
106 ], | 106 ], |
107 } | 107 } |
OLD | NEW |