| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 consistent strings across all platforms. Note that the plugin name | 10 # Use consistent strings across all platforms. Note that the plugin name |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 ['OS!="win"', { | 340 ['OS!="win"', { |
| 341 'sources!': [ | 341 'sources!': [ |
| 342 'host/plugin/host_plugin.def', | 342 'host/plugin/host_plugin.def', |
| 343 'host/plugin/host_plugin.rc', | 343 'host/plugin/host_plugin.rc', |
| 344 ], | 344 ], |
| 345 }], | 345 }], |
| 346 ], | 346 ], |
| 347 }, # end of target 'remoting_host_plugin' | 347 }, # end of target 'remoting_host_plugin' |
| 348 | 348 |
| 349 { | 349 { |
| 350 # This is a deprecated target that has been replaced with remoting_webapp. | |
| 351 # It is kept here because there are some pieces that still depend on | |
| 352 # this target. | |
| 353 # TODO(sergeyu): Remove this target. http://crbug.com/109948 | |
| 354 'target_name': 'webapp_it2me', | |
| 355 'type': 'none', | |
| 356 'dependencies': [ | |
| 357 'remoting_host_plugin', | |
| 358 ], | |
| 359 'sources': [ | |
| 360 'webapp/build-webapp.py', | |
| 361 '<@(remoting_webapp_files)', | |
| 362 '<@(remoting_webapp_locale_files)', | |
| 363 ], | |
| 364 'actions': [ | |
| 365 { | |
| 366 'action_name': 'Build Remoting WebApp', | |
| 367 'output_dir': '<(PRODUCT_DIR)/remoting/it2me.webapp', | |
| 368 'plugin_path': '<(PRODUCT_DIR)/<(host_plugin_prefix)remoting_host_plug
in.<(host_plugin_extension)', | |
| 369 'zip_path': '<(PRODUCT_DIR)/remoting-it2me.zip', | |
| 370 'inputs': [ | |
| 371 'webapp/build-webapp.py', | |
| 372 '<(_plugin_path)', | |
| 373 '<@(remoting_webapp_files)', | |
| 374 '<@(remoting_webapp_locale_files)', | |
| 375 ], | |
| 376 'outputs': [ | |
| 377 '<(_output_dir)', | |
| 378 '<(_zip_path)', | |
| 379 ], | |
| 380 'action': [ | |
| 381 'python', 'webapp/build-webapp.py', | |
| 382 '<(buildtype)', | |
| 383 '<(host_plugin_mime_type)', | |
| 384 '<(_output_dir)', | |
| 385 '<(_zip_path)', | |
| 386 '<(_plugin_path)', | |
| 387 '<@(remoting_webapp_files)', | |
| 388 '--locales', | |
| 389 '<@(remoting_webapp_locale_files)', | |
| 390 ], | |
| 391 }, | |
| 392 ], | |
| 393 }, # end of target 'webapp_it2me' | |
| 394 | |
| 395 { | |
| 396 'target_name': 'remoting_webapp', | 350 'target_name': 'remoting_webapp', |
| 397 'type': 'none', | 351 'type': 'none', |
| 398 'dependencies': [ | 352 'dependencies': [ |
| 399 'remoting_host_plugin', | 353 'remoting_host_plugin', |
| 400 ], | 354 ], |
| 401 'sources': [ | 355 'sources': [ |
| 402 'webapp/build-webapp.py', | 356 'webapp/build-webapp.py', |
| 403 'webapp/verify-webapp.py', | 357 'webapp/verify-webapp.py', |
| 404 '<@(remoting_webapp_files)', | 358 '<@(remoting_webapp_files)', |
| 405 '<@(remoting_webapp_locale_files)', | 359 '<@(remoting_webapp_locale_files)', |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 '../base/allocator/allocator.gyp:allocator', | 978 '../base/allocator/allocator.gyp:allocator', |
| 1025 ], | 979 ], |
| 1026 }, | 980 }, |
| 1027 ], | 981 ], |
| 1028 ], | 982 ], |
| 1029 }], | 983 }], |
| 1030 ], # end of 'conditions' | 984 ], # end of 'conditions' |
| 1031 }, # end of target 'remoting_unittests' | 985 }, # end of target 'remoting_unittests' |
| 1032 ], # end of targets | 986 ], # end of targets |
| 1033 } | 987 } |
| OLD | NEW |