OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
7 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 # Use a consistent MIME-type independent of branding. | 10 # Use a consistent MIME-type independent of branding. |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 }], | 197 }], |
198 ['OS!="win"', { | 198 ['OS!="win"', { |
199 'sources!': [ | 199 'sources!': [ |
200 'host/host_plugin.def', | 200 'host/host_plugin.def', |
201 'host/host_plugin.rc', | 201 'host/host_plugin.rc', |
202 ], | 202 ], |
203 }], | 203 }], |
204 ], | 204 ], |
205 }, # end of target 'remoting_host_plugin' | 205 }, # end of target 'remoting_host_plugin' |
206 { | 206 { |
207 'target_name': 'webapp_me2mom', | 207 'target_name': 'webapp_it2me', |
208 'type': 'none', | 208 'type': 'none', |
209 'dependencies': [ | 209 'dependencies': [ |
210 'remoting_host_plugin', | 210 'remoting_host_plugin', |
211 ], | 211 ], |
212 'sources': [ | 212 'sources': [ |
213 'webapp/build-webapp.py', | 213 'webapp/build-webapp.py', |
214 ], | 214 ], |
215 'sources!': [ | 215 'sources!': [ |
216 'webapp/build-webapp.py', | 216 'webapp/build-webapp.py', |
217 ], | 217 ], |
218 # Can't use a 'copies' because we need to manipulate | 218 # Can't use a 'copies' because we need to manipulate |
219 # the manifest file to get the right plugin name. | 219 # the manifest file to get the right plugin name. |
220 # Also we need to move the plugin into the me2mom | 220 # Also we need to move the plugin into the me2mom |
221 # folder, which means 2 copies, and gyp doesn't | 221 # folder, which means 2 copies, and gyp doesn't |
222 # seem to guarantee the ordering of 2 copies statements | 222 # seem to guarantee the ordering of 2 copies statements |
223 # when the actual project is generated. | 223 # when the actual project is generated. |
224 'actions': [ | 224 'actions': [ |
225 { | 225 { |
226 'action_name': 'Build Me2Mom WebApp', | 226 'action_name': 'Build It2Me WebApp', |
227 'inputs': [ | 227 'inputs': [ |
228 'webapp/me2mom/', | 228 'webapp/me2mom/', |
229 '<(PRODUCT_DIR)/<(plugin_prefix)remoting_host_plugin.<(plugin_extens
ion)', | 229 '<(PRODUCT_DIR)/<(plugin_prefix)remoting_host_plugin.<(plugin_extens
ion)', |
230 ], | 230 ], |
231 'outputs': [ | 231 'outputs': [ |
232 '<(PRODUCT_DIR)/remoting/remoting-me2mom.webapp', | 232 '<(PRODUCT_DIR)/remoting/remoting-it2me.webapp', |
233 ], | 233 ], |
234 'action': [ | 234 'action': [ |
235 'python', 'webapp/build-webapp.py', | 235 'python', 'webapp/build-webapp.py', |
236 '<(host_plugin_mime_type)', | 236 '<(host_plugin_mime_type)', |
237 '<@(_inputs)', | 237 '<@(_inputs)', |
238 '<@(_outputs)' | 238 '<@(_outputs)' |
239 ], | 239 ], |
240 }, | 240 }, |
241 ], | 241 ], |
242 }, # end of target 'webapp_me2mom' | 242 }, # end of target 'webapp_it2me' |
243 { | 243 { |
244 'target_name': 'remoting_base', | 244 'target_name': 'remoting_base', |
245 'type': 'static_library', | 245 'type': 'static_library', |
246 'dependencies': [ | 246 'dependencies': [ |
247 '../base/base.gyp:base', | 247 '../base/base.gyp:base', |
248 '../ui/ui.gyp:ui_gfx', | 248 '../ui/ui.gyp:ui_gfx', |
249 '../net/net.gyp:net', | 249 '../net/net.gyp:net', |
250 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 250 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
251 '../third_party/libvpx/libvpx.gyp:libvpx_include', | 251 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
252 '../third_party/zlib/zlib.gyp:zlib', | 252 '../third_party/zlib/zlib.gyp:zlib', |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 ], # end of 'conditions' | 739 ], # end of 'conditions' |
740 }, # end of target 'remoting_unittests' | 740 }, # end of target 'remoting_unittests' |
741 ], # end of targets | 741 ], # end of targets |
742 } | 742 } |
743 | 743 |
744 # Local Variables: | 744 # Local Variables: |
745 # tab-width:2 | 745 # tab-width:2 |
746 # indent-tabs-mode:nil | 746 # indent-tabs-mode:nil |
747 # End: | 747 # End: |
748 # vim: set expandtab tabstop=2 shiftwidth=2: | 748 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |