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

Side by Side Diff: remoting/remoting_host_win.gypi

Issue 2049173003: Updating remoting_start_host to use remoting_core.dll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing CR feedback Created 4 years, 6 months 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
« no previous file with comments | « remoting/remoting_host.gypi ('k') | remoting/resources/remoting_strings.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'remoting_host_installer_win_roots': [ 7 'remoting_host_installer_win_roots': [
8 'host/installer/win/', 8 'host/installer/win/',
9 ], 9 ],
10 'remoting_host_installer_win_files': [ 10 'remoting_host_installer_win_files': [
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.rc', 221 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.rc',
222 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc', 222 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc',
223 '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc', 223 '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc',
224 'host/desktop_process_main.cc', 224 'host/desktop_process_main.cc',
225 'host/host_main.cc', 225 'host/host_main.cc',
226 'host/host_main.h', 226 'host/host_main.h',
227 'host/it2me/it2me_native_messaging_host_main.cc', 227 'host/it2me/it2me_native_messaging_host_main.cc',
228 'host/it2me/it2me_native_messaging_host_main.h', 228 'host/it2me/it2me_native_messaging_host_main.h',
229 'host/security_key/remote_security_key_main.cc', 229 'host/security_key/remote_security_key_main.cc',
230 'host/security_key/remote_security_key_main.h', 230 'host/security_key/remote_security_key_main.h',
231 'host/setup/host_starter.cc',
232 'host/setup/host_starter.h',
231 'host/setup/me2me_native_messaging_host_main.cc', 233 'host/setup/me2me_native_messaging_host_main.cc',
232 'host/setup/me2me_native_messaging_host_main.h', 234 'host/setup/me2me_native_messaging_host_main.h',
235 'host/setup/start_host_main.cc',
236 'host/setup/start_host_main.h',
233 'host/win/chromoting_module.cc', 237 'host/win/chromoting_module.cc',
234 'host/win/chromoting_module.h', 238 'host/win/chromoting_module.h',
235 'host/win/core.cc', 239 'host/win/core.cc',
236 'host/win/core_resource.h', 240 'host/win/core_resource.h',
237 'host/win/host_service.cc', 241 'host/win/host_service.cc',
238 'host/win/host_service.h', 242 'host/win/host_service.h',
239 'host/win/omaha.cc', 243 'host/win/omaha.cc',
240 'host/win/omaha.h', 244 'host/win/omaha.h',
241 'host/win/rdp_desktop_session.cc', 245 'host/win/rdp_desktop_session.cc',
242 'host/win/rdp_desktop_session.h', 246 'host/win/rdp_desktop_session.h',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 }, 352 },
349 'VCLinkerTool': { 353 'VCLinkerTool': {
350 'EntryPointSymbol': 'HostEntryPoint', 354 'EntryPointSymbol': 'HostEntryPoint',
351 'IgnoreAllDefaultLibraries': 'true', 355 'IgnoreAllDefaultLibraries': 'true',
352 'OutputFile': '$(OutDir)\\remoting_host.exe', 356 'OutputFile': '$(OutDir)\\remoting_host.exe',
353 'SubSystem': '2', # /SUBSYSTEM:WINDOWS 357 'SubSystem': '2', # /SUBSYSTEM:WINDOWS
354 }, 358 },
355 }, 359 },
356 }, # end of target 'remoting_me2me_host' 360 }, # end of target 'remoting_me2me_host'
357 { 361 {
362 # GN target: //remoting/host:remoting_start_host
363 'target_name': 'remoting_start_host',
364 'type': 'executable',
365 'variables': { 'enable_wexit_time_destructors': 1, },
366 'defines': [
367 'BINARY=BINARY_REMOTING_START_HOST',
368 ],
369 'dependencies': [
370 'remoting_core',
371 'remoting_windows_resources',
372 ],
373 'sources': [
374 '<(SHARED_INTERMEDIATE_DIR)/remoting/version.rc',
375 'host/setup/start_host_entry_point.cc',
376 ],
377 'msvs_settings': {
378 'VCLinkerTool': {
379 'IgnoreAllDefaultLibraries': 'true',
380 'SubSystem': '1', # /SUBSYSTEM:CONSOLE
381 },
382 },
383 }, # end of target 'remoting_start_host'
384 {
358 # GN version: //remoting/host:remote_security_key 385 # GN version: //remoting/host:remote_security_key
359 'target_name': 'remote_security_key', 386 'target_name': 'remote_security_key',
360 'type': 'executable', 387 'type': 'executable',
361 'product_name': 'remote_security_key', 388 'product_name': 'remote_security_key',
362 'variables': { 'enable_wexit_time_destructors': 1, }, 389 'variables': { 'enable_wexit_time_destructors': 1, },
363 'defines' : [ 390 'defines' : [
364 'BINARY=BINARY_REMOTE_SECURITY_KEY', 391 'BINARY=BINARY_REMOTE_SECURITY_KEY',
365 ], 392 ],
366 'dependencies': [ 393 'dependencies': [
367 'remoting_core', 394 'remoting_core',
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 709
683 { 710 {
684 'target_name': 'remoting_me2me_host_archive', 711 'target_name': 'remoting_me2me_host_archive',
685 'type': 'none', 712 'type': 'none',
686 }, 713 },
687 ], # end of 'targets' 714 ], # end of 'targets'
688 }], # 'wix_exists == "True" 715 }], # 'wix_exists == "True"
689 716
690 ], # end of 'conditions' 717 ], # end of 'conditions'
691 } 718 }
OLDNEW
« no previous file with comments | « remoting/remoting_host.gypi ('k') | remoting/resources/remoting_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698