Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: installer/installer.gyp

Issue 6003395731128320: Only take into account processes that have our plugin loaded (Closed)
Patch Set: Simplify Process_Closer constructor Created March 31, 2014, 8:31 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | installer/src/custom-action/close_application.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Expects command line definition for variable 'target_arch' 2 # Expects command line definition for variable 'target_arch'
3 # Must be either 'ia32' or 'x64' 3 # Must be either 'ia32' or 'x64'
4 # 4 #
5 # This .gyp file sits in directory 'installer'. 5 # This .gyp file sits in directory 'installer'.
6 # When gyp translates files locations, base them here. 6 # When gyp translates files locations, base them here.
7 # 7 #
8 # The solution file from this .gyp source lands in 'installer/build/<(target_arc h)'. 8 # The solution file from this .gyp source lands in 'installer/build/<(target_arc h)'.
9 # When gyp does not translate file locations, base them here. 9 # When gyp does not translate file locations, base them here.
10 # 10 #
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 'message': 'Compiling WiX source', 794 'message': 'Compiling WiX source',
795 'inputs': 795 'inputs':
796 [ 796 [
797 'src/installer-lib/test/test-installer-lib.wxs' 797 'src/installer-lib/test/test-installer-lib.wxs'
798 ], 798 ],
799 'outputs': 799 'outputs':
800 [ 800 [
801 '<(build_dir_arch)/test-installer-lib.wixobj' 801 '<(build_dir_arch)/test-installer-lib.wixobj'
802 ], 802 ],
803 'action': 803 'action':
804 [ 'candle -nologo -dNoDefault ', '-out', '<@(_outputs)', '<@(_inputs)' ] 804 [ 'candle -nologo -arch <(candle_arch) -dNoDefault ', '-out', '<@(_outpu ts)', '<@(_inputs)' ]
805 } ] 805 } ]
806 }, 806 },
807 807
808 ############# 808 #############
809 # WiX link for library test MSI 809 # WiX link for library test MSI
810 ############# 810 #############
811 { 811 {
812 'target_name': 'installer-library-test-msi', 812 'target_name': 'installer-library-test-msi',
813 'type': 'none', 813 'type': 'none',
814 'dependencies': 814 'dependencies':
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 'SubSystem': '1', # Console 890 'SubSystem': '1', # Console
891 }, 891 },
892 }, 892 },
893 }, 893 },
894 894
895 ] 895 ]
896 } 896 }
897 897
898 898
899 899
OLDNEW
« no previous file with comments | « no previous file | installer/src/custom-action/close_application.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld