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

Side by Side Diff: remoting/remoting_host_linux.gypi

Issue 974683002: Copy me2me host debian package to a separately named file, for use on Chromoting swarming bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | testing/chromoting/chromoting_integration_tests.isolate » ('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 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 ['(branding=="Chrome" and enable_remoting_host==1 and chromeos==0) or (archi ve_chromoting_tests==1)', { 7 ['(branding=="Chrome" and enable_remoting_host==1 and chromeos==0) or (archi ve_chromoting_tests==1)', {
8 8
9 'variables': { 9 'variables': {
10 'build_deb_script': 'host/installer/linux/build-deb.sh', 10 'build_deb_script': 'host/installer/linux/build-deb.sh',
(...skipping 23 matching lines...) Expand all
34 { 34 {
35 'action_name': 'build_linux_installer_zip', 35 'action_name': 'build_linux_installer_zip',
36 'inputs': [ 36 'inputs': [
37 '<@(packaging_outputs)', 37 '<@(packaging_outputs)',
38 ], 38 ],
39 'outputs': [ 39 'outputs': [
40 '<(PRODUCT_DIR)/remoting-me2me-host-<(OS).zip', 40 '<(PRODUCT_DIR)/remoting-me2me-host-<(OS).zip',
41 ], 41 ],
42 'action': [ 'zip', '-j', '-0', '<@(_outputs)', '<@(_inputs)' ], 42 'action': [ 'zip', '-j', '-0', '<@(_outputs)', '<@(_inputs)' ],
43 }, 43 },
44 {
45 # Copy the debian package file, which has version info in it,
46 # to a consistent filename for use on Chromoting swarming bots.
47 'action_name': 'Copy debian package.',
48 'inputs': [
49 '<@(deb_filename)',
50 ],
51 'outputs': [
52 '<(PRODUCT_DIR)/remoting-me2me-host.deb',
53 ],
54 'action': [ 'cp', '<@(_inputs)', '<@(_outputs)'],
55 },
anandc 2015/03/03 01:37:46 Another way to do this is to copy over to the Swar
44 ], 56 ],
45 }, { 57 }, {
46 'target_name': 'remoting_me2me_host_deb_installer', 58 'target_name': 'remoting_me2me_host_deb_installer',
47 'type': 'none', 59 'type': 'none',
48 'dependencies': [ 60 'dependencies': [
49 '<(icu_gyp_path):icudata', 61 '<(icu_gyp_path):icudata',
50 'remoting_it2me_native_messaging_host', 62 'remoting_it2me_native_messaging_host',
51 'remoting_me2me_host', 63 'remoting_me2me_host',
52 'remoting_me2me_native_messaging_host', 64 'remoting_me2me_native_messaging_host',
53 'remoting_native_messaging_manifests', 65 'remoting_native_messaging_manifests',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 # '../breakpad/breakpad.gyp:dump_syms', 135 # '../breakpad/breakpad.gyp:dump_syms',
124 # ], 136 # ],
125 # }], # 'linux_dump_symbols==1' 137 # }], # 'linux_dump_symbols==1'
126 # ], # end of 'conditions' 138 # ], # end of 'conditions'
127 # }, # end of target 'remoting_linux_symbols' 139 # }, # end of target 'remoting_linux_symbols'
128 ], # end of 'targets' 140 ], # end of 'targets'
129 }], # 'enable_remoting_host==1' 141 }], # 'enable_remoting_host==1'
130 142
131 ], # end of 'conditions' 143 ], # end of 'conditions'
132 } 144 }
OLDNEW
« no previous file with comments | « no previous file | testing/chromoting/chromoting_integration_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698