| OLD | NEW |
| 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS=="linux" and branding=="Chrome" and enable_remoting_host==1', { | 7 ['OS=="linux" and branding=="Chrome" and enable_remoting_host==1', { |
| 8 'variables': { | 8 'variables': { |
| 9 'build_deb_script': 'host/installer/linux/build-deb.sh', | 9 'build_deb_script': 'host/installer/linux/build-deb.sh', |
| 10 'deb_filename': 'host/installer/<!(["<(build_deb_script)", "-p", "-s", "
<(DEPTH)"])', | 10 'deb_filename': 'host/installer/<!(["<(build_deb_script)", "-p", "-s", "
<(DEPTH)"])', |
| 11 'packaging_outputs': [ | 11 'packaging_outputs': [ |
| 12 '<(deb_filename)', | 12 '<(deb_filename)', |
| 13 '<!(echo <(deb_filename) | sed -e "s/.deb$/.changes/")', | 13 '<!(echo <(deb_filename) | sed -e "s/.deb$/.changes/")', |
| 14 '<(PRODUCT_DIR)/remoting_me2me_host.debug', | 14 '<(PRODUCT_DIR)/remoting_me2me_host.debug', |
| 15 '<(PRODUCT_DIR)/remoting_start_host.debug', | 15 '<(PRODUCT_DIR)/remoting_start_host.debug', |
| 16 '<(PRODUCT_DIR)/remoting_native_messaging_host.debug', | 16 '<(PRODUCT_DIR)/native_messaging_host.debug', |
| 17 '<(PRODUCT_DIR)/remote_assistance_host.debug', |
| 17 ] | 18 ] |
| 18 }, | 19 }, |
| 19 'targets': [ | 20 'targets': [ |
| 20 { | 21 { |
| 21 # Store the installer package(s) into a zip file so there is a | 22 # Store the installer package(s) into a zip file so there is a |
| 22 # consistent filename to reference for build archiving (i.e. in | 23 # consistent filename to reference for build archiving (i.e. in |
| 23 # FILES.cfg). This also avoids possible conflicts with "wildcard" | 24 # FILES.cfg). This also avoids possible conflicts with "wildcard" |
| 24 # package handling in other build/signing scripts. | 25 # package handling in other build/signing scripts. |
| 25 'target_name': 'remoting_me2me_host_archive', | 26 'target_name': 'remoting_me2me_host_archive', |
| 26 'type': 'none', | 27 'type': 'none', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 '../base/allocator/allocator.gyp:allocator', | 134 '../base/allocator/allocator.gyp:allocator', |
| 134 ], | 135 ], |
| 135 }], | 136 }], |
| 136 ], | 137 ], |
| 137 }, # end of target 'remoting_start_host' | 138 }, # end of target 'remoting_start_host' |
| 138 ], # end of 'targets' | 139 ], # end of 'targets' |
| 139 }], # 'OS=="linux"' | 140 }], # 'OS=="linux"' |
| 140 | 141 |
| 141 ], # end of 'conditions' | 142 ], # end of 'conditions' |
| 142 } | 143 } |
| OLD | NEW |