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

Side by Side Diff: remoting/remoting.gyp

Issue 10243011: [Chromoting] Factor out common code for pin hashing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
OLDNEW
1 1
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 # TODO(dmaclach): can we pick this up some other way? Right now it's 8 # TODO(dmaclach): can we pick this up some other way? Right now it's
9 # duplicated from chrome.gyp 9 # duplicated from chrome.gyp
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 ], 321 ],
322 'sources': [ 322 'sources': [
323 'host/branding.cc', 323 'host/branding.cc',
324 'host/branding.h', 324 'host/branding.h',
325 'host/daemon_controller_common_win.cc', 325 'host/daemon_controller_common_win.cc',
326 'host/daemon_controller_common_win.h', 326 'host/daemon_controller_common_win.h',
327 'host/elevated_controller.rc', 327 'host/elevated_controller.rc',
328 'host/elevated_controller_module_win.cc', 328 'host/elevated_controller_module_win.cc',
329 'host/elevated_controller_win.cc', 329 'host/elevated_controller_win.cc',
330 'host/elevated_controller_win.h', 330 'host/elevated_controller_win.h',
331 'host/pin_hash.cc',
332 'host/pin_hash.h',
331 'host/verify_config_window_win.cc', 333 'host/verify_config_window_win.cc',
332 'host/verify_config_window_win.h', 334 'host/verify_config_window_win.h',
333 '<(SHARED_INTERMEDIATE_DIR)/remoting/elevated_controller_version.rc' 335 '<(SHARED_INTERMEDIATE_DIR)/remoting/elevated_controller_version.rc'
334 ], 336 ],
335 'msvs_settings': { 337 'msvs_settings': {
336 'VCLinkerTool': { 338 'VCLinkerTool': {
337 'AdditionalOptions': ["/MANIFESTUAC:level='requireAdministrator'"] , 339 'AdditionalOptions': ["/MANIFESTUAC:level='requireAdministrator'"] ,
338 # 2 == /SUBSYSTEM:WINDOWS 340 # 2 == /SUBSYSTEM:WINDOWS
339 'SubSystem': '2', 341 'SubSystem': '2',
340 }, 342 },
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 '../third_party/npapi/npapi.gyp:npapi', 617 '../third_party/npapi/npapi.gyp:npapi',
616 ], 618 ],
617 'sources': [ 619 'sources': [
618 'host/branding.cc', 620 'host/branding.cc',
619 'host/branding.h', 621 'host/branding.h',
620 'host/it2me_host_user_interface.cc', 622 'host/it2me_host_user_interface.cc',
621 'host/it2me_host_user_interface.h', 623 'host/it2me_host_user_interface.h',
622 'host/plugin/daemon_controller.h', 624 'host/plugin/daemon_controller.h',
623 'host/daemon_controller_common_win.cc', 625 'host/daemon_controller_common_win.cc',
624 'host/daemon_controller_common_win.h', 626 'host/daemon_controller_common_win.h',
627 'host/pin_hash.cc',
628 'host/pin_hash.h',
625 'host/plugin/daemon_controller_linux.cc', 629 'host/plugin/daemon_controller_linux.cc',
626 'host/plugin/daemon_controller_mac.cc', 630 'host/plugin/daemon_controller_mac.cc',
627 'host/plugin/daemon_controller_win.cc', 631 'host/plugin/daemon_controller_win.cc',
628 'host/plugin/daemon_installer_win.cc', 632 'host/plugin/daemon_installer_win.cc',
629 'host/plugin/daemon_installer_win.h', 633 'host/plugin/daemon_installer_win.h',
630 'host/plugin/host_log_handler.cc', 634 'host/plugin/host_log_handler.cc',
631 'host/plugin/host_log_handler.h', 635 'host/plugin/host_log_handler.h',
632 'host/plugin/host_plugin.cc', 636 'host/plugin/host_plugin.cc',
633 'host/plugin/host_plugin_resource.h', 637 'host/plugin/host_plugin_resource.h',
634 'host/plugin/host_plugin_utils.cc', 638 'host/plugin/host_plugin_utils.cc',
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 'host/differ_block_unittest.cc', 1606 'host/differ_block_unittest.cc',
1603 'host/differ_unittest.cc', 1607 'host/differ_unittest.cc',
1604 'host/heartbeat_sender_unittest.cc', 1608 'host/heartbeat_sender_unittest.cc',
1605 'host/host_key_pair_unittest.cc', 1609 'host/host_key_pair_unittest.cc',
1606 'host/host_mock_objects.cc', 1610 'host/host_mock_objects.cc',
1607 'host/host_mock_objects.h', 1611 'host/host_mock_objects.h',
1608 'host/it2me_host_user_interface.cc', 1612 'host/it2me_host_user_interface.cc',
1609 'host/it2me_host_user_interface.h', 1613 'host/it2me_host_user_interface.h',
1610 'host/json_host_config_unittest.cc', 1614 'host/json_host_config_unittest.cc',
1611 'host/log_to_server_unittest.cc', 1615 'host/log_to_server_unittest.cc',
1616 'host/pin_hash.cc',
1617 'host/pin_hash_unittest.cc',
1612 'host/register_support_host_request_unittest.cc', 1618 'host/register_support_host_request_unittest.cc',
1613 'host/screen_recorder_unittest.cc', 1619 'host/screen_recorder_unittest.cc',
1614 'host/server_log_entry_unittest.cc', 1620 'host/server_log_entry_unittest.cc',
1615 ] 1621 ]
1616 }], 1622 }],
1617 ['toolkit_uses_gtk == 1', { 1623 ['toolkit_uses_gtk == 1', {
1618 'dependencies': [ 1624 'dependencies': [
1619 # Needed for the following #include chain: 1625 # Needed for the following #include chain:
1620 # base/run_all_unittests.cc 1626 # base/run_all_unittests.cc
1621 # ../base/test_suite.h 1627 # ../base/test_suite.h
1622 # gtk/gtk.h 1628 # gtk/gtk.h
1623 '../build/linux/system.gyp:gtk', 1629 '../build/linux/system.gyp:gtk',
1624 '../build/linux/system.gyp:ssl', 1630 '../build/linux/system.gyp:ssl',
1625 ], 1631 ],
1626 'conditions': [ 1632 'conditions': [
1627 [ 'linux_use_tcmalloc==1', { 1633 [ 'linux_use_tcmalloc==1', {
1628 'dependencies': [ 1634 'dependencies': [
1629 '../base/allocator/allocator.gyp:allocator', 1635 '../base/allocator/allocator.gyp:allocator',
1630 ], 1636 ],
1631 }, 1637 },
1632 ], 1638 ],
1633 ], 1639 ],
1634 }], 1640 }],
1635 ], # end of 'conditions' 1641 ], # end of 'conditions'
1636 }, # end of target 'remoting_unittests' 1642 }, # end of target 'remoting_unittests'
1637 ], # end of targets 1643 ], # end of targets
1638 } 1644 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698