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

Side by Side Diff: remoting/remoting.gyp

Issue 10959031: [Chromoting] Publish Chromoting Host installation as a .zip archive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Oops, |target| and |sources| were swapped. Created 8 years, 2 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/win/parameters.json ('k') | remoting/tools/candle_and_light.py » ('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 (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 10
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 '--wix_path', '<(wix_path)', 728 '--wix_path', '<(wix_path)',
729 '--intermediate_dir', '<(INTERMEDIATE_DIR)/installation', 729 '--intermediate_dir', '<(INTERMEDIATE_DIR)/installation',
730 '<(RULE_INPUT_PATH)', 730 '<(RULE_INPUT_PATH)',
731 '<@(_outputs)', 731 '<@(_outputs)',
732 ], 732 ],
733 'message': 'Generating <@(_outputs)', 733 'message': 'Generating <@(_outputs)',
734 }, 734 },
735 ], 735 ],
736 }, # end of target 'remoting_host_installation' 736 }, # end of target 'remoting_host_installation'
737 737
738 # The 'remoting_host_installation_unittest' target is used to make sure
739 # that the code signing job (running outside of Chromium tree) will be
740 # able to unpack and re-assemble the installation successfully.
741 #
742 # *** If this target fails to compile the code signing job will fail
743 # too, breaking the official build. ***
744 #
745 # N.B. The command lines passed to the WiX tools here should be in sync
746 # with the code signing script.
747 {
748 'target_name': 'remoting_host_installation_unittest',
749 'type': 'none',
750 'dependencies': [
751 'remoting_host_installation',
752 ],
753 'sources': [
754 '<(PRODUCT_DIR)/chromoting.msi',
755 ],
756 'outputs': [
757 '<(INTERMEDIATE_DIR)/chromoting-test.msi',
758 ],
759 'rules': [
760 {
761 'rule_name': 'dark_and_candle_and_light',
762 'extension': 'msi',
763 'inputs': [
764 'tools/dark_and_candle_and_light.py',
765 ],
766 'outputs': [
767 '<(INTERMEDIATE_DIR)/chromoting-test.msi',
768 ],
769 'msvs_cygwin_shell': 0,
770 'action': [
771 'python',
772 'tools/dark_and_candle_and_light.py',
773 '--wix_path', '<(wix_path)',
774 '--input', '<(RULE_INPUT_PATH)',
775 '--intermediate_dir', '<(INTERMEDIATE_DIR)/installation',
776 '--output', '<@(_outputs)',
777 ],
778 'message': 'Unpacking and repacking to <@(_outputs)',
779 },
780 ],
781 }, # end of target 'remoting_host_installation_unittest'
782 { 738 {
783 'target_name': 'remoting_me2me_host_archive', 739 'target_name': 'remoting_me2me_host_archive',
784 'type': 'none', 740 'type': 'none',
785 'dependencies': [ 741 'dependencies': [
786 'remoting_host_controller', 742 'remoting_host_controller',
787 'remoting_service', 743 'remoting_service',
788 'remoting_me2me_host', 744 'remoting_me2me_host',
789 ], 745 ],
790 'sources': [ 746 'sources': [
791 '<(sas_dll_path)/sas.dll', 747 '<(sas_dll_path)/sas.dll',
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1997 '../base/allocator/allocator.gyp:allocator', 1953 '../base/allocator/allocator.gyp:allocator',
1998 ], 1954 ],
1999 }, 1955 },
2000 ], 1956 ],
2001 ], 1957 ],
2002 }], 1958 }],
2003 ], # end of 'conditions' 1959 ], # end of 'conditions'
2004 }, # end of target 'remoting_unittests' 1960 }, # end of target 'remoting_unittests'
2005 ], # end of targets 1961 ], # end of targets
2006 } 1962 }
OLDNEW
« no previous file with comments | « remoting/host/win/parameters.json ('k') | remoting/tools/candle_and_light.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698