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

Side by Side Diff: remoting/remoting_host_linux.gypi

Issue 340303002: Fix breakage on official builers by NPAPI removal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 '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)"])',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 ['linux_dump_symbols==1', { 88 ['linux_dump_symbols==1', {
89 'actions': [ 89 'actions': [
90 { 90 {
91 'action_name': 'dump_symbols', 91 'action_name': 'dump_symbols',
92 'inputs': [ 92 'inputs': [
93 '<(DEPTH)/build/linux/dump_app_syms', 93 '<(DEPTH)/build/linux/dump_app_syms',
94 '<(PRODUCT_DIR)/dump_syms', 94 '<(PRODUCT_DIR)/dump_syms',
95 '<(PRODUCT_DIR)/remoting_me2me_host', 95 '<(PRODUCT_DIR)/remoting_me2me_host',
96 ], 96 ],
97 'outputs': [ 97 'outputs': [
98 '<(PRODUCT_DIR)/<(plugin_file).breakpad.<(target_arch)', 98 '<(PRODUCT_DIR)/remoting_me2me_host.breakpad.<(target_arch)' ,
99 ], 99 ],
100 'action': ['<(DEPTH)/build/linux/dump_app_syms', 100 'action': ['<(DEPTH)/build/linux/dump_app_syms',
101 '<(PRODUCT_DIR)/dump_syms', 101 '<(PRODUCT_DIR)/dump_syms',
102 '<(linux_strip_binary)', 102 '<(linux_strip_binary)',
103 '<(PRODUCT_DIR)/remoting_me2me_host', 103 '<(PRODUCT_DIR)/remoting_me2me_host',
104 '<@(_outputs)'], 104 '<@(_outputs)'],
105 'message': 'Dumping breakpad symbols to <(_outputs)', 105 'message': 'Dumping breakpad symbols to <(_outputs)',
106 'process_outputs_as_sources': 1, 106 'process_outputs_as_sources': 1,
107 }, 107 },
108 ], 108 ],
(...skipping 21 matching lines...) Expand all
130 '../base/allocator/allocator.gyp:allocator', 130 '../base/allocator/allocator.gyp:allocator',
131 ], 131 ],
132 }], 132 }],
133 ], 133 ],
134 }, # end of target 'remoting_start_host' 134 }, # end of target 'remoting_start_host'
135 ], # end of 'targets' 135 ], # end of 'targets'
136 }], # 'OS=="linux"' 136 }], # 'OS=="linux"'
137 137
138 ], # end of 'conditions' 138 ], # end of 'conditions'
139 } 139 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698