| OLD | NEW | 
|---|
| 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  Loading... | 
| 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  Loading... | 
| 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 | 
| OLD | NEW | 
|---|