OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 # Use consistent strings across all platforms. Note that the plugin name | 10 # Use consistent strings across all platforms. Note that the plugin name |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'process_outputs_as_sources': 1, | 183 'process_outputs_as_sources': 1, |
184 }, | 184 }, |
185 ], | 185 ], |
186 'dependencies': [ | 186 'dependencies': [ |
187 'remoting_host_plugin', | 187 'remoting_host_plugin', |
188 '../breakpad/breakpad.gyp:dump_syms', | 188 '../breakpad/breakpad.gyp:dump_syms', |
189 ], | 189 ], |
190 }], # 'linux_dump_symbols==1' | 190 }], # 'linux_dump_symbols==1' |
191 ], # end of 'conditions' | 191 ], # end of 'conditions' |
192 }, # end of target 'linux_symbols' | 192 }, # end of target 'linux_symbols' |
| 193 |
| 194 { |
| 195 'target_name': 'remoting_me2me_host', |
| 196 'type': 'executable', |
| 197 'dependencies': [ |
| 198 'remoting_base', |
| 199 'remoting_host', |
| 200 'remoting_jingle_glue', |
| 201 '../base/base.gyp:base', |
| 202 '../base/base.gyp:base_i18n', |
| 203 '../media/media.gyp:media', |
| 204 ], |
| 205 'sources': [ |
| 206 'host/capturer_fake_ascii.cc', |
| 207 'host/capturer_fake_ascii.h', |
| 208 'host/continue_window.h', |
| 209 'host/continue_window_linux.cc', |
| 210 'host/disconnect_window_linux.cc', |
| 211 'host/me2me_host.cc', |
| 212 ], |
| 213 }, # end of target 'remoting_me2me_host' |
| 214 |
193 ], # end of 'targets' | 215 ], # end of 'targets' |
194 }], # 'OS=="linux"' | 216 }], # 'OS=="linux"' |
195 ], # end of 'conditions' | 217 ], # end of 'conditions' |
196 | 218 |
197 'targets': [ | 219 'targets': [ |
198 { | 220 { |
199 'target_name': 'remoting_client_plugin', | 221 'target_name': 'remoting_client_plugin', |
200 'type': 'static_library', | 222 'type': 'static_library', |
201 'defines': [ | 223 'defines': [ |
202 'HAVE_STDINT_H', # Required by on2_integer.h | 224 'HAVE_STDINT_H', # Required by on2_integer.h |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 '../base/allocator/allocator.gyp:allocator', | 938 '../base/allocator/allocator.gyp:allocator', |
917 ], | 939 ], |
918 }, | 940 }, |
919 ], | 941 ], |
920 ], | 942 ], |
921 }], | 943 }], |
922 ], # end of 'conditions' | 944 ], # end of 'conditions' |
923 }, # end of target 'remoting_unittests' | 945 }, # end of target 'remoting_unittests' |
924 ], # end of targets | 946 ], # end of targets |
925 } | 947 } |
OLD | NEW |