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

Side by Side Diff: remoting/remoting_host_win.gypi

Issue 2073943002: [Chromoting] Disable building 64bit chromoting.msi file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« remoting/host/BUILD.gn ('K') | « remoting/host/BUILD.gn ('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 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 }, 556 },
557 ], 557 ],
558 }, # end of target 'remoting_windows_resources' 558 }, # end of target 'remoting_windows_resources'
559 ], # end of 'targets' 559 ], # end of 'targets'
560 560
561 'conditions': [ 561 'conditions': [
562 # The host installation is generated only if WiX is available. If 562 # The host installation is generated only if WiX is available. If
563 # component build is used the produced installation will not work due to 563 # component build is used the produced installation will not work due to
564 # missing DLLs. We build it anyway to make sure the GYP scripts are executed 564 # missing DLLs. We build it anyway to make sure the GYP scripts are executed
565 # by the bots. 565 # by the bots.
566 ['wix_exists == "True"', { 566 ['wix_exists == "True" and target_arch == "ia32"', {
joedow 2016/06/20 22:15:04 nit: Add comment on why we don't build for x64.
Hzj_jie 2016/06/21 02:14:55 Done.
567 'targets': [ 567 'targets': [
568 { 568 {
569 'target_name': 'remoting_host_installation', 569 'target_name': 'remoting_host_installation',
570 'type': 'none', 570 'type': 'none',
571 'dependencies': [ 571 'dependencies': [
572 'remoting_me2me_host_archive', 572 'remoting_me2me_host_archive',
573 ], 573 ],
574 'sources': [ 574 'sources': [
575 '<(PRODUCT_DIR)/remoting-me2me-host-<(OS).zip', 575 '<(PRODUCT_DIR)/remoting-me2me-host-<(OS).zip',
576 ], 576 ],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 709
710 { 710 {
711 'target_name': 'remoting_me2me_host_archive', 711 'target_name': 'remoting_me2me_host_archive',
712 'type': 'none', 712 'type': 'none',
713 }, 713 },
714 ], # end of 'targets' 714 ], # end of 'targets'
715 }], # 'wix_exists == "True" 715 }], # 'wix_exists == "True"
716 716
717 ], # end of 'conditions' 717 ], # end of 'conditions'
718 } 718 }
OLDNEW
« remoting/host/BUILD.gn ('K') | « remoting/host/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698