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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 'sources': [ | 46 'sources': [ |
47 'command.cc', | 47 'command.cc', |
48 'common.cc', | 48 'common.cc', |
49 'daemon.cc', | 49 'daemon.cc', |
50 'device_controller.cc', | 50 'device_controller.cc', |
51 'device_forwarder_main.cc', | 51 'device_forwarder_main.cc', |
52 'device_listener.cc', | 52 'device_listener.cc', |
53 'forwarder.cc', | 53 'forwarder.cc', |
54 'pipe_notifier.cc', | 54 'pipe_notifier.cc', |
55 'socket.cc', | 55 'socket.cc', |
56 'thread.cc', | |
57 ], | 56 ], |
58 }, | 57 }, |
59 { | 58 { |
60 'target_name': 'host_forwarder', | 59 'target_name': 'host_forwarder', |
61 'type': 'executable', | 60 'type': 'executable', |
62 'toolsets': ['host'], | 61 'toolsets': ['host'], |
63 'dependencies': [ | 62 'dependencies': [ |
64 '../../../base/base.gyp:base', | 63 '../../../base/base.gyp:base', |
65 '../common/common.gyp:android_tools_common', | 64 '../common/common.gyp:android_tools_common', |
66 ], | 65 ], |
67 'include_dirs': [ | 66 'include_dirs': [ |
68 '../../..', | 67 '../../..', |
69 ], | 68 ], |
70 'sources': [ | 69 'sources': [ |
71 'command.cc', | 70 'command.cc', |
72 'common.cc', | 71 'common.cc', |
73 'daemon.cc', | 72 'daemon.cc', |
74 'forwarder.cc', | 73 'forwarder.cc', |
75 'host_controller.cc', | 74 'host_controller.cc', |
76 'host_forwarder_main.cc', | 75 'host_forwarder_main.cc', |
77 'pipe_notifier.cc', | 76 'pipe_notifier.cc', |
78 'socket.cc', | 77 'socket.cc', |
79 'thread.cc', | |
80 # TODO(pliard): Remove this. This is needed to avoid undefined | 78 # TODO(pliard): Remove this. This is needed to avoid undefined |
81 # references at link time. | 79 # references at link time. |
82 '../../../base/message_loop/message_pump_glib.cc', | 80 '../../../base/message_loop/message_pump_glib.cc', |
83 '../../../base/message_loop/message_pump_gtk.cc', | 81 '../../../base/message_loop/message_pump_gtk.cc', |
84 ], | 82 ], |
85 }, | 83 }, |
86 ], | 84 ], |
87 } | 85 } |
OLD | NEW |