| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 7 { |
| 8 'target_name': 'forwarder2', | 8 'target_name': 'forwarder2', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'device_forwarder_main.cc', | 38 'device_forwarder_main.cc', |
| 39 'device_listener.cc', | 39 'device_listener.cc', |
| 40 'forwarder.cc', | 40 'forwarder.cc', |
| 41 'forwarders_manager.cc', | 41 'forwarders_manager.cc', |
| 42 'pipe_notifier.cc', | 42 'pipe_notifier.cc', |
| 43 'socket.cc', | 43 'socket.cc', |
| 44 ], | 44 ], |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 'target_name': 'host_forwarder', | 47 'target_name': 'host_forwarder', |
| 48 'type': 'executable', | |
| 49 'toolsets': ['host'], | 48 'toolsets': ['host'], |
| 50 'dependencies': [ | 49 'conditions': [ |
| 51 '../../../base/base.gyp:base', | 50 ['host_os!="linux"', { |
| 52 '../common/common.gyp:android_tools_common', | 51 'type': 'none', |
| 53 ], | 52 }, { |
| 54 'include_dirs': [ | 53 'dependencies': [ |
| 55 '../../..', | 54 '../../../base/base.gyp:base', |
| 56 ], | 55 '../common/common.gyp:android_tools_common', |
| 57 'sources': [ | 56 ], |
| 58 'command.cc', | 57 'include_dirs': [ |
| 59 'common.cc', | 58 '../../..', |
| 60 'daemon.cc', | 59 ], |
| 61 'forwarder.cc', | 60 'sources': [ |
| 62 'forwarders_manager.cc', | 61 'command.cc', |
| 63 'host_controller.cc', | 62 'common.cc', |
| 64 'host_forwarder_main.cc', | 63 'daemon.cc', |
| 65 'pipe_notifier.cc', | 64 'forwarder.cc', |
| 66 'socket.cc', | 65 'forwarders_manager.cc', |
| 66 'host_controller.cc', |
| 67 'host_forwarder_main.cc', |
| 68 'pipe_notifier.cc', |
| 69 'socket.cc', |
| 70 ], |
| 71 }], |
| 67 ], | 72 ], |
| 68 }, | 73 }, |
| 69 ], | 74 ], |
| 70 } | 75 } |
| OLD | NEW |