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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 'process_outputs_as_sources': 1, | 186 'process_outputs_as_sources': 1, |
187 }, | 187 }, |
188 ], | 188 ], |
189 'dependencies': [ | 189 'dependencies': [ |
190 'remoting_host_plugin', | 190 'remoting_host_plugin', |
191 '../breakpad/breakpad.gyp:dump_syms', | 191 '../breakpad/breakpad.gyp:dump_syms', |
192 ], | 192 ], |
193 }], # 'linux_dump_symbols==1' | 193 }], # 'linux_dump_symbols==1' |
194 ], # end of 'conditions' | 194 ], # end of 'conditions' |
195 }, # end of target 'linux_symbols' | 195 }, # end of target 'linux_symbols' |
| 196 |
| 197 { |
| 198 'target_name': 'remoting_me2me_host', |
| 199 'type': 'executable', |
| 200 'dependencies': [ |
| 201 'remoting_base', |
| 202 'remoting_host', |
| 203 'remoting_jingle_glue', |
| 204 '../base/base.gyp:base', |
| 205 '../base/base.gyp:base_i18n', |
| 206 '../media/media.gyp:media', |
| 207 ], |
| 208 'sources': [ |
| 209 # TODO(lambroslambrou): Remove the dependencies on the Disconnect |
| 210 # and Continue windows for the Me2Me case - crbug.com/104377. |
| 211 'host/continue_window.h', |
| 212 'host/continue_window_linux.cc', |
| 213 'host/disconnect_window_linux.cc', |
| 214 'host/remoting_me2me_host.cc', |
| 215 ], |
| 216 }, # end of target 'remoting_me2me_host' |
| 217 |
196 ], # end of 'targets' | 218 ], # end of 'targets' |
197 }], # 'OS=="linux"' | 219 }], # 'OS=="linux"' |
198 ], # end of 'conditions' | 220 ], # end of 'conditions' |
199 | 221 |
200 'targets': [ | 222 'targets': [ |
201 { | 223 { |
202 'target_name': 'remoting_client_plugin', | 224 'target_name': 'remoting_client_plugin', |
203 'type': 'static_library', | 225 'type': 'static_library', |
204 'variables': { 'enable_wexit_time_destructors': 1, }, | 226 'variables': { 'enable_wexit_time_destructors': 1, }, |
205 'defines': [ | 227 'defines': [ |
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
930 '../base/allocator/allocator.gyp:allocator', | 952 '../base/allocator/allocator.gyp:allocator', |
931 ], | 953 ], |
932 }, | 954 }, |
933 ], | 955 ], |
934 ], | 956 ], |
935 }], | 957 }], |
936 ], # end of 'conditions' | 958 ], # end of 'conditions' |
937 }, # end of target 'remoting_unittests' | 959 }, # end of target 'remoting_unittests' |
938 ], # end of targets | 960 ], # end of targets |
939 } | 961 } |
OLD | NEW |