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

Side by Side Diff: remoting/remoting.gyp

Issue 11273024: Remove GaiaOauthClient and GaiaUserEmailFetcher from remoting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/host/signaling_connector.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 10
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after
1457 { 1457 {
1458 'target_name': 'remoting_host', 1458 'target_name': 'remoting_host',
1459 'type': 'static_library', 1459 'type': 'static_library',
1460 'variables': { 'enable_wexit_time_destructors': 1, }, 1460 'variables': { 'enable_wexit_time_destructors': 1, },
1461 'dependencies': [ 1461 'dependencies': [
1462 'remoting_base', 1462 'remoting_base',
1463 'remoting_jingle_glue', 1463 'remoting_jingle_glue',
1464 'remoting_protocol', 1464 'remoting_protocol',
1465 'differ_block', 1465 'differ_block',
1466 '../crypto/crypto.gyp:crypto', 1466 '../crypto/crypto.gyp:crypto',
1467 '../google_apis/google_apis.gyp:google_apis',
1467 '../ipc/ipc.gyp:ipc', 1468 '../ipc/ipc.gyp:ipc',
1468 ], 1469 ],
1469 'defines': [ 1470 'defines': [
1470 'VERSION=<(version_full)', 1471 'VERSION=<(version_full)',
1471 ], 1472 ],
1472 'sources': [ 1473 'sources': [
1473 'host/audio_capturer.cc', 1474 'host/audio_capturer.cc',
1474 'host/audio_capturer.h', 1475 'host/audio_capturer.h',
1475 'host/audio_capturer_linux.cc', 1476 'host/audio_capturer_linux.cc',
1476 'host/audio_capturer_linux.h', 1477 'host/audio_capturer_linux.h',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1516 'host/disconnect_window_mac.mm', 1517 'host/disconnect_window_mac.mm',
1517 'host/disconnect_window_win.cc', 1518 'host/disconnect_window_win.cc',
1518 'host/dns_blackhole_checker.cc', 1519 'host/dns_blackhole_checker.cc',
1519 'host/dns_blackhole_checker.h', 1520 'host/dns_blackhole_checker.h',
1520 'host/event_executor.h', 1521 'host/event_executor.h',
1521 'host/event_executor_fake.cc', 1522 'host/event_executor_fake.cc',
1522 'host/event_executor_fake.h', 1523 'host/event_executor_fake.h',
1523 'host/event_executor_linux.cc', 1524 'host/event_executor_linux.cc',
1524 'host/event_executor_mac.cc', 1525 'host/event_executor_mac.cc',
1525 'host/event_executor_win.cc', 1526 'host/event_executor_win.cc',
1526 'host/gaia_oauth_client.cc',
1527 'host/gaia_oauth_client.h',
1528 'host/gaia_user_email_fetcher.cc',
1529 'host/gaia_user_email_fetcher.h',
1530 'host/heartbeat_sender.cc', 1527 'host/heartbeat_sender.cc',
1531 'host/heartbeat_sender.h', 1528 'host/heartbeat_sender.h',
1532 'host/host_config.cc', 1529 'host/host_config.cc',
1533 'host/host_config.h', 1530 'host/host_config.h',
1534 'host/host_exit_codes.h', 1531 'host/host_exit_codes.h',
1535 'host/host_key_pair.cc', 1532 'host/host_key_pair.cc',
1536 'host/host_key_pair.h', 1533 'host/host_key_pair.h',
1537 'host/host_port_allocator.cc', 1534 'host/host_port_allocator.cc',
1538 'host/host_port_allocator.h', 1535 'host/host_port_allocator.h',
1539 'host/host_secret.cc', 1536 'host/host_secret.cc',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1735 'variables': { 'enable_wexit_time_destructors': 1, }, 1732 'variables': { 'enable_wexit_time_destructors': 1, },
1736 'dependencies': [ 1733 'dependencies': [
1737 'remoting_base', 1734 'remoting_base',
1738 'remoting_breakpad', 1735 'remoting_breakpad',
1739 'remoting_host', 1736 'remoting_host',
1740 'remoting_host_event_logger', 1737 'remoting_host_event_logger',
1741 'remoting_host_logging', 1738 'remoting_host_logging',
1742 'remoting_jingle_glue', 1739 'remoting_jingle_glue',
1743 '../base/base.gyp:base', 1740 '../base/base.gyp:base',
1744 '../base/base.gyp:base_i18n', 1741 '../base/base.gyp:base_i18n',
1745 '../google_apis/google_apis.gyp:google_apis',
1746 '../media/media.gyp:media', 1742 '../media/media.gyp:media',
1747 '../net/net.gyp:net', 1743 '../net/net.gyp:net',
1748 ], 1744 ],
1749 'defines': [ 1745 'defines': [
1750 'VERSION=<(version_full)', 1746 'VERSION=<(version_full)',
1751 ], 1747 ],
1752 'sources': [ 1748 'sources': [
1753 'host/config_file_watcher.cc', 1749 'host/config_file_watcher.cc',
1754 'host/config_file_watcher.h', 1750 'host/config_file_watcher.h',
1755 'host/curtain_mode.h', 1751 'host/curtain_mode.h',
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
2221 '../base/allocator/allocator.gyp:allocator', 2217 '../base/allocator/allocator.gyp:allocator',
2222 ], 2218 ],
2223 }, 2219 },
2224 ], 2220 ],
2225 ], 2221 ],
2226 }], # end of 'toolkit_uses_gtk == 1' 2222 }], # end of 'toolkit_uses_gtk == 1'
2227 ], # end of 'conditions' 2223 ], # end of 'conditions'
2228 }, # end of target 'remoting_unittests' 2224 }, # end of target 'remoting_unittests'
2229 ], # end of targets 2225 ], # end of targets
2230 } 2226 }
OLDNEW
« no previous file with comments | « remoting/host/signaling_connector.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698