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

Side by Side Diff: remoting/remoting_host_linux.gypi

Issue 342583002: 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 },
95 'inputs': [ 92 'inputs': [
96 '<(DEPTH)/build/linux/dump_app_syms', 93 '<(DEPTH)/build/linux/dump_app_syms',
97 '<(PRODUCT_DIR)/dump_syms', 94 '<(PRODUCT_DIR)/dump_syms',
98 '<(PRODUCT_DIR)/<(plugin_file)', 95 '<(PRODUCT_DIR)/remoting_me2me_host',
99 ], 96 ],
100 'outputs': [ 97 'outputs': [
101 '<(PRODUCT_DIR)/<(plugin_file).breakpad.<(target_arch)', 98 '<(PRODUCT_DIR)/<(plugin_file).breakpad.<(target_arch)',
102 ], 99 ],
103 'action': ['<(DEPTH)/build/linux/dump_app_syms', 100 'action': ['<(DEPTH)/build/linux/dump_app_syms',
104 '<(PRODUCT_DIR)/dump_syms', 101 '<(PRODUCT_DIR)/dump_syms',
105 '<(linux_strip_binary)', 102 '<(linux_strip_binary)',
106 '<(PRODUCT_DIR)/<(plugin_file)', 103 '<(PRODUCT_DIR)/remoting_me2me_host',
107 '<@(_outputs)'], 104 '<@(_outputs)'],
108 'message': 'Dumping breakpad symbols to <(_outputs)', 105 'message': 'Dumping breakpad symbols to <(_outputs)',
109 'process_outputs_as_sources': 1, 106 'process_outputs_as_sources': 1,
110 }, 107 },
111 ], 108 ],
112 'dependencies': [ 109 'dependencies': [
113 'remoting_host_plugin', 110 'remoting_me2me_host',
114 '../breakpad/breakpad.gyp:dump_syms', 111 '../breakpad/breakpad.gyp:dump_syms',
115 ], 112 ],
116 }], # 'linux_dump_symbols==1' 113 }], # 'linux_dump_symbols==1'
117 ], # end of 'conditions' 114 ], # end of 'conditions'
118 }, # end of target 'linux_symbols' 115 }, # end of target 'linux_symbols'
119 { 116 {
120 'target_name': 'remoting_start_host', 117 'target_name': 'remoting_start_host',
121 'type': 'executable', 118 'type': 'executable',
122 'dependencies': [ 119 'dependencies': [
123 'remoting_host_setup_base', 120 'remoting_host_setup_base',
124 ], 121 ],
125 'sources': [ 122 'sources': [
126 'host/setup/host_starter.cc', 123 'host/setup/host_starter.cc',
127 'host/setup/host_starter.h', 124 'host/setup/host_starter.h',
128 'host/setup/start_host.cc', 125 'host/setup/start_host.cc',
129 ], 126 ],
130 'conditions': [ 127 'conditions': [
131 ['use_allocator!="none"', { 128 ['use_allocator!="none"', {
132 'dependencies': [ 129 'dependencies': [
133 '../base/allocator/allocator.gyp:allocator', 130 '../base/allocator/allocator.gyp:allocator',
134 ], 131 ],
135 }], 132 }],
136 ], 133 ],
137 }, # end of target 'remoting_start_host' 134 }, # end of target 'remoting_start_host'
138 ], # end of 'targets' 135 ], # end of 'targets'
139 }], # 'OS=="linux"' 136 }], # 'OS=="linux"'
140 137
141 ], # end of 'conditions' 138 ], # end of 'conditions'
142 } 139 }
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