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

Side by Side Diff: remoting/remoting.gyp

Issue 10021003: Implemented on-demand installation of the Chromoting Host on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: The last piece of CR feeback. Rebased. Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/plugin/daemon_installer_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 '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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 ], 547 ],
548 'sources': [ 548 'sources': [
549 'host/branding.cc', 549 'host/branding.cc',
550 'host/branding.h', 550 'host/branding.h',
551 'host/it2me_host_user_interface.cc', 551 'host/it2me_host_user_interface.cc',
552 'host/it2me_host_user_interface.h', 552 'host/it2me_host_user_interface.h',
553 'host/plugin/daemon_controller.h', 553 'host/plugin/daemon_controller.h',
554 'host/plugin/daemon_controller_linux.cc', 554 'host/plugin/daemon_controller_linux.cc',
555 'host/plugin/daemon_controller_mac.cc', 555 'host/plugin/daemon_controller_mac.cc',
556 'host/plugin/daemon_controller_win.cc', 556 'host/plugin/daemon_controller_win.cc',
557 'host/plugin/daemon_installer_win.cc',
558 'host/plugin/daemon_installer_win.h',
557 'host/plugin/host_log_handler.cc', 559 'host/plugin/host_log_handler.cc',
558 'host/plugin/host_log_handler.h', 560 'host/plugin/host_log_handler.h',
559 'host/plugin/host_plugin.cc', 561 'host/plugin/host_plugin.cc',
560 'host/plugin/host_plugin_resource.h', 562 'host/plugin/host_plugin_resource.h',
561 'host/plugin/host_plugin_utils.cc', 563 'host/plugin/host_plugin_utils.cc',
562 'host/plugin/host_plugin_utils.h', 564 'host/plugin/host_plugin_utils.h',
563 'host/plugin/host_script_object.cc', 565 'host/plugin/host_script_object.cc',
564 'host/plugin/host_script_object.h', 566 'host/plugin/host_script_object.h',
565 ], 567 ],
566 'conditions': [ 568 'conditions': [
(...skipping 25 matching lines...) Expand all
592 ['mac_breakpad==1', { 594 ['mac_breakpad==1', {
593 'variables': { 595 'variables': {
594 # A real .dSYM is needed for dump_syms to operate on. 596 # A real .dSYM is needed for dump_syms to operate on.
595 'mac_real_dsym': 1, 597 'mac_real_dsym': 1,
596 }, 598 },
597 }], 599 }],
598 ], # conditions 600 ], # conditions
599 }], # OS=="mac" 601 }], # OS=="mac"
600 [ 'OS=="win"', { 602 [ 'OS=="win"', {
601 'dependencies': [ 603 'dependencies': [
604 '../google_update/google_update.gyp:google_update',
602 '../ipc/ipc.gyp:ipc', 605 '../ipc/ipc.gyp:ipc',
603 'remoting_elevated_controller', 606 'remoting_elevated_controller',
604 'remoting_version_resources', 607 'remoting_version_resources',
605 ], 608 ],
606 'include_dirs': [ 609 'include_dirs': [
607 '<(INTERMEDIATE_DIR)', 610 '<(INTERMEDIATE_DIR)',
608 ], 611 ],
609 'sources': [ 612 'sources': [
610 'host/plugin/host_plugin.def', 613 'host/plugin/host_plugin.def',
611 'host/plugin/host_plugin.rc', 614 'host/plugin/host_plugin.rc',
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 '../base/allocator/allocator.gyp:allocator', 1385 '../base/allocator/allocator.gyp:allocator',
1383 ], 1386 ],
1384 }, 1387 },
1385 ], 1388 ],
1386 ], 1389 ],
1387 }], 1390 }],
1388 ], # end of 'conditions' 1391 ], # end of 'conditions'
1389 }, # end of target 'remoting_unittests' 1392 }, # end of target 'remoting_unittests'
1390 ], # end of targets 1393 ], # end of targets
1391 } 1394 }
OLDNEW
« no previous file with comments | « remoting/host/plugin/daemon_installer_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698