| 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 ], | 547 ], |
| 548 'sources': [ | 548 'sources': [ |
| 549 'host/branding.cc', | 549 'host/branding.cc', |
| 550 'host/branding.h', | 550 'host/branding.h', |
| 551 'host/it2me_host_user_interface.cc', | 551 'host/it2me_host_user_interface.cc', |
| 552 'host/it2me_host_user_interface.h', | 552 'host/it2me_host_user_interface.h', |
| 553 'host/plugin/daemon_controller.h', | 553 'host/plugin/daemon_controller.h', |
| 554 'host/plugin/daemon_controller_linux.cc', | 554 'host/plugin/daemon_controller_linux.cc', |
| 555 'host/plugin/daemon_controller_mac.cc', | 555 'host/plugin/daemon_controller_mac.cc', |
| 556 'host/plugin/daemon_controller_win.cc', | 556 'host/plugin/daemon_controller_win.cc', |
| 557 'host/plugin/daemon_installer_win.cc', |
| 558 'host/plugin/daemon_installer_win.h', |
| 557 'host/plugin/host_log_handler.cc', | 559 'host/plugin/host_log_handler.cc', |
| 558 'host/plugin/host_log_handler.h', | 560 'host/plugin/host_log_handler.h', |
| 559 'host/plugin/host_plugin.cc', | 561 'host/plugin/host_plugin.cc', |
| 560 'host/plugin/host_plugin_resource.h', | 562 'host/plugin/host_plugin_resource.h', |
| 561 'host/plugin/host_plugin_utils.cc', | 563 'host/plugin/host_plugin_utils.cc', |
| 562 'host/plugin/host_plugin_utils.h', | 564 'host/plugin/host_plugin_utils.h', |
| 563 'host/plugin/host_script_object.cc', | 565 'host/plugin/host_script_object.cc', |
| 564 'host/plugin/host_script_object.h', | 566 'host/plugin/host_script_object.h', |
| 565 ], | 567 ], |
| 566 'conditions': [ | 568 'conditions': [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 592 ['mac_breakpad==1', { | 594 ['mac_breakpad==1', { |
| 593 'variables': { | 595 'variables': { |
| 594 # A real .dSYM is needed for dump_syms to operate on. | 596 # A real .dSYM is needed for dump_syms to operate on. |
| 595 'mac_real_dsym': 1, | 597 'mac_real_dsym': 1, |
| 596 }, | 598 }, |
| 597 }], | 599 }], |
| 598 ], # conditions | 600 ], # conditions |
| 599 }], # OS=="mac" | 601 }], # OS=="mac" |
| 600 [ 'OS=="win"', { | 602 [ 'OS=="win"', { |
| 601 'dependencies': [ | 603 'dependencies': [ |
| 604 '../google_update/google_update.gyp:google_update', |
| 602 '../ipc/ipc.gyp:ipc', | 605 '../ipc/ipc.gyp:ipc', |
| 603 'remoting_elevated_controller', | 606 'remoting_elevated_controller', |
| 604 'remoting_version_resources', | 607 'remoting_version_resources', |
| 605 ], | 608 ], |
| 606 'include_dirs': [ | 609 'include_dirs': [ |
| 607 '<(INTERMEDIATE_DIR)', | 610 '<(INTERMEDIATE_DIR)', |
| 608 ], | 611 ], |
| 609 'sources': [ | 612 'sources': [ |
| 610 'host/plugin/host_plugin.def', | 613 'host/plugin/host_plugin.def', |
| 611 'host/plugin/host_plugin.rc', | 614 'host/plugin/host_plugin.rc', |
| (...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1379 '../base/allocator/allocator.gyp:allocator', | 1382 '../base/allocator/allocator.gyp:allocator', |
| 1380 ], | 1383 ], |
| 1381 }, | 1384 }, |
| 1382 ], | 1385 ], |
| 1383 ], | 1386 ], |
| 1384 }], | 1387 }], |
| 1385 ], # end of 'conditions' | 1388 ], # end of 'conditions' |
| 1386 }, # end of target 'remoting_unittests' | 1389 }, # end of target 'remoting_unittests' |
| 1387 ], # end of targets | 1390 ], # end of targets |
| 1388 } | 1391 } |
| OLD | NEW |