OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'device_serial', |
| 12 'type': 'static_library', |
| 13 'include_dirs': [ |
| 14 '../..', |
| 15 ], |
| 16 'conditions': [ |
| 17 ['OS=="linux"', { |
| 18 'dependencies': [ |
| 19 '../../build/linux/system.gyp:udev', |
| 20 ], |
| 21 }], |
| 22 ], |
| 23 'sources': [ |
| 24 'serial_device_enumerator.cc', |
| 25 'serial_device_enumerator.h', |
| 26 'serial_device_enumerator_linux.cc', |
| 27 'serial_device_enumerator_linux.h', |
| 28 'serial_device_enumerator_mac.cc', |
| 29 'serial_device_enumerator_mac.h', |
| 30 'serial_device_enumerator_win.cc', |
| 31 'serial_device_enumerator_win.h', |
| 32 'serial_device_info.cc', |
| 33 'serial_device_info.h', |
| 34 ], |
| 35 }, |
| 36 ], |
| 37 } |
OLD | NEW |