| 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 23 matching lines...) Expand all Loading... |
| 34 'usb_service/usb_interface_impl.cc', | 34 'usb_service/usb_interface_impl.cc', |
| 35 'usb_service/usb_interface_impl.h', | 35 'usb_service/usb_interface_impl.h', |
| 36 'usb_service/usb_service.h', | 36 'usb_service/usb_service.h', |
| 37 'usb_service/usb_service_impl.cc', | 37 'usb_service/usb_service_impl.cc', |
| 38 ], | 38 ], |
| 39 'conditions': [ | 39 'conditions': [ |
| 40 ['OS == "linux"', { | 40 ['OS == "linux"', { |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 '../build/linux/system.gyp:udev', | 42 '../build/linux/system.gyp:udev', |
| 43 ], | 43 ], |
| 44 }] | 44 }], |
| 45 ['chromeos==1', { |
| 46 'dependencies': [ |
| 47 '../chromeos/chromeos.gyp:chromeos', |
| 48 ], |
| 49 }], |
| 45 ] | 50 ] |
| 46 }], | 51 }], |
| 47 } | 52 } |
| OLD | NEW |