Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: remoting/remoting.gyp

Issue 8511029: Initial check-in of Linux virtual Me2Me. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add remoting_me2me_host, and use that instead of remoting_simple_host. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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',
Sergey Ulanov 2011/11/11 00:00:43 Do we need this here? Maybe make it part of remoti
Wez 2011/11/11 00:24:09 We shouldn't need these!
Lambros 2011/11/15 23:27:36 Removed.
207 'host/capturer_fake_ascii.h',
208 'host/continue_window.h',
209 'host/continue_window_linux.cc',
Sergey Ulanov 2011/11/11 00:00:43 same here
Wez 2011/11/11 00:24:09 These are required by ChromotingHost when running
Lambros 2011/11/15 23:27:36 Done (added TODO with bug-report).
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698