| 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 { |
| 11 # GN version: //device/serial |
| 11 'target_name': 'device_serial', | 12 'target_name': 'device_serial', |
| 12 'type': 'static_library', | 13 'type': 'static_library', |
| 13 'include_dirs': [ | 14 'include_dirs': [ |
| 14 '../..', | 15 '../..', |
| 15 ], | 16 ], |
| 16 'conditions': [ | 17 'conditions': [ |
| 17 ['OS=="linux"', { | 18 ['OS=="linux"', { |
| 18 'dependencies': [ | 19 'dependencies': [ |
| 19 '../../build/linux/system.gyp:udev', | 20 '../../build/linux/system.gyp:udev', |
| 20 ], | 21 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 33 'serial_device_enumerator_linux.cc', | 34 'serial_device_enumerator_linux.cc', |
| 34 'serial_device_enumerator_linux.h', | 35 'serial_device_enumerator_linux.h', |
| 35 'serial_device_enumerator_mac.cc', | 36 'serial_device_enumerator_mac.cc', |
| 36 'serial_device_enumerator_mac.h', | 37 'serial_device_enumerator_mac.h', |
| 37 'serial_device_enumerator_win.cc', | 38 'serial_device_enumerator_win.cc', |
| 38 'serial_device_enumerator_win.h', | 39 'serial_device_enumerator_win.h', |
| 39 ], | 40 ], |
| 40 }, | 41 }, |
| 41 ], | 42 ], |
| 42 } | 43 } |
| OLD | NEW |