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

Side by Side Diff: remoting/remoting_host_linux.gypi

Issue 340993002: Revert of Remove NPAPI plugin from chromoting webapp. (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 | « remoting/remoting_host.gypi ('k') | remoting/remoting_host_mac.gypi » ('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 ['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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'targets': [ 82 'targets': [
83 # Linux breakpad processing 83 # Linux breakpad processing
84 { 84 {
85 'target_name': 'remoting_linux_symbols', 85 'target_name': 'remoting_linux_symbols',
86 'type': 'none', 86 'type': 'none',
87 'conditions': [ 87 'conditions': [
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 'variables': {
93 'plugin_file': '<(host_plugin_prefix)remoting_host_plugin.<( host_plugin_extension)',
94 },
92 'inputs': [ 95 'inputs': [
93 '<(DEPTH)/build/linux/dump_app_syms', 96 '<(DEPTH)/build/linux/dump_app_syms',
94 '<(PRODUCT_DIR)/dump_syms', 97 '<(PRODUCT_DIR)/dump_syms',
95 '<(PRODUCT_DIR)/remoting_me2me_host', 98 '<(PRODUCT_DIR)/<(plugin_file)',
96 ], 99 ],
97 'outputs': [ 100 'outputs': [
98 '<(PRODUCT_DIR)/<(plugin_file).breakpad.<(target_arch)', 101 '<(PRODUCT_DIR)/<(plugin_file).breakpad.<(target_arch)',
99 ], 102 ],
100 'action': ['<(DEPTH)/build/linux/dump_app_syms', 103 'action': ['<(DEPTH)/build/linux/dump_app_syms',
101 '<(PRODUCT_DIR)/dump_syms', 104 '<(PRODUCT_DIR)/dump_syms',
102 '<(linux_strip_binary)', 105 '<(linux_strip_binary)',
103 '<(PRODUCT_DIR)/remoting_me2me_host', 106 '<(PRODUCT_DIR)/<(plugin_file)',
104 '<@(_outputs)'], 107 '<@(_outputs)'],
105 'message': 'Dumping breakpad symbols to <(_outputs)', 108 'message': 'Dumping breakpad symbols to <(_outputs)',
106 'process_outputs_as_sources': 1, 109 'process_outputs_as_sources': 1,
107 }, 110 },
108 ], 111 ],
109 'dependencies': [ 112 'dependencies': [
110 'remoting_me2me_host', 113 'remoting_host_plugin',
111 '../breakpad/breakpad.gyp:dump_syms', 114 '../breakpad/breakpad.gyp:dump_syms',
112 ], 115 ],
113 }], # 'linux_dump_symbols==1' 116 }], # 'linux_dump_symbols==1'
114 ], # end of 'conditions' 117 ], # end of 'conditions'
115 }, # end of target 'linux_symbols' 118 }, # end of target 'linux_symbols'
116 { 119 {
117 'target_name': 'remoting_start_host', 120 'target_name': 'remoting_start_host',
118 'type': 'executable', 121 'type': 'executable',
119 'dependencies': [ 122 'dependencies': [
120 'remoting_host_setup_base', 123 'remoting_host_setup_base',
121 ], 124 ],
122 'sources': [ 125 'sources': [
123 'host/setup/host_starter.cc', 126 'host/setup/host_starter.cc',
124 'host/setup/host_starter.h', 127 'host/setup/host_starter.h',
125 'host/setup/start_host.cc', 128 'host/setup/start_host.cc',
126 ], 129 ],
127 'conditions': [ 130 'conditions': [
128 ['use_allocator!="none"', { 131 ['use_allocator!="none"', {
129 'dependencies': [ 132 'dependencies': [
130 '../base/allocator/allocator.gyp:allocator', 133 '../base/allocator/allocator.gyp:allocator',
131 ], 134 ],
132 }], 135 }],
133 ], 136 ],
134 }, # end of target 'remoting_start_host' 137 }, # end of target 'remoting_start_host'
135 ], # end of 'targets' 138 ], # end of 'targets'
136 }], # 'OS=="linux"' 139 }], # 'OS=="linux"'
137 140
138 ], # end of 'conditions' 141 ], # end of 'conditions'
139 } 142 }
OLDNEW
« no previous file with comments | « remoting/remoting_host.gypi ('k') | remoting/remoting_host_mac.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698