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 27 matching lines...) Expand all Loading... |
38 ['use_udev == 1', { | 38 ['use_udev == 1', { |
39 'dependencies': [ | 39 'dependencies': [ |
40 '../udev_linux/udev.gyp:udev_linux', | 40 '../udev_linux/udev.gyp:udev_linux', |
41 ], | 41 ], |
42 }, { | 42 }, { |
43 'sources!': [ | 43 'sources!': [ |
44 'serial_device_enumerator_linux.cc', | 44 'serial_device_enumerator_linux.cc', |
45 'serial_device_enumerator_linux.h', | 45 'serial_device_enumerator_linux.h', |
46 ], | 46 ], |
47 }], | 47 }], |
| 48 ['OS=="win"', { |
| 49 'link_settings': { |
| 50 'msvs_settings': { |
| 51 'VCLinkerTool': { |
| 52 'DelayLoadDLLs': [ |
| 53 'setupapi.dll', |
| 54 ], |
| 55 'AdditionalDependencies': [ |
| 56 'setupapi.lib', |
| 57 ], |
| 58 }, |
| 59 }, |
| 60 }, |
| 61 'all_dependent_settings': { |
| 62 'msvs_settings': { |
| 63 'VCLinkerTool': { |
| 64 'DelayLoadDLLs': [ |
| 65 'setupapi.dll', |
| 66 ], |
| 67 'AdditionalDependencies': [ |
| 68 'setupapi.lib', |
| 69 ], |
| 70 }, |
| 71 }, |
| 72 }, |
| 73 }], |
48 ], | 74 ], |
49 'dependencies': [ | 75 'dependencies': [ |
50 'device_serial_mojo', | 76 'device_serial_mojo', |
51 '../../net/net.gyp:net', | 77 '../../net/net.gyp:net', |
52 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 78 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
53 '../../third_party/re2/re2.gyp:re2', | 79 '../../third_party/re2/re2.gyp:re2', |
54 '../core/core.gyp:device_core', | 80 '../core/core.gyp:device_core', |
55 ], | 81 ], |
56 'export_dependent_settings': [ | 82 'export_dependent_settings': [ |
57 'device_serial_mojo', | 83 'device_serial_mojo', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 'device_serial', | 132 'device_serial', |
107 'device_serial_mojo', | 133 'device_serial_mojo', |
108 ], | 134 ], |
109 'sources': [ | 135 'sources': [ |
110 'test_serial_io_handler.cc', | 136 'test_serial_io_handler.cc', |
111 'test_serial_io_handler.h', | 137 'test_serial_io_handler.h', |
112 ], | 138 ], |
113 }, | 139 }, |
114 ], | 140 ], |
115 } | 141 } |
OLD | NEW |