| 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 'targets': [{ | 6 'targets': [{ |
| 7 'target_name': 'usb_service', | 7 'target_name': 'usb_service', |
| 8 'type': '<(component)', | 8 'type': '<(component)', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 23 'usb_service/usb_context.cc', | 23 'usb_service/usb_context.cc', |
| 24 'usb_service/usb_context.h', | 24 'usb_service/usb_context.h', |
| 25 'usb_service/usb_device_impl.cc', | 25 'usb_service/usb_device_impl.cc', |
| 26 'usb_service/usb_device_impl.h', | 26 'usb_service/usb_device_impl.h', |
| 27 'usb_service/usb_device.h', | 27 'usb_service/usb_device.h', |
| 28 'usb_service/usb_device_handle_impl.cc', | 28 'usb_service/usb_device_handle_impl.cc', |
| 29 'usb_service/usb_device_handle_impl.h', | 29 'usb_service/usb_device_handle_impl.h', |
| 30 'usb_service/usb_device_handle.h', | 30 'usb_service/usb_device_handle.h', |
| 31 'usb_service/usb_error.cc', |
| 32 'usb_service/usb_error.h', |
| 31 'usb_service/usb_interface.h', | 33 'usb_service/usb_interface.h', |
| 32 'usb_service/usb_interface_impl.cc', | 34 'usb_service/usb_interface_impl.cc', |
| 33 'usb_service/usb_interface_impl.h', | 35 'usb_service/usb_interface_impl.h', |
| 34 'usb_service/usb_service.h', | 36 'usb_service/usb_service.h', |
| 35 'usb_service/usb_service_impl.cc', | 37 'usb_service/usb_service_impl.cc', |
| 36 ], | 38 ], |
| 37 'conditions': [ | 39 'conditions': [ |
| 38 ['OS == "linux"', { | 40 ['OS == "linux"', { |
| 39 'dependencies': [ | 41 'dependencies': [ |
| 40 '../build/linux/system.gyp:udev', | 42 '../build/linux/system.gyp:udev', |
| 41 ], | 43 ], |
| 42 }] | 44 }] |
| 43 ] | 45 ] |
| 44 }], | 46 }], |
| 45 } | 47 } |
| OLD | NEW |