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

Side by Side Diff: remoting/remoting.gyp

Issue 8647001: Add implementation for current IT2Me auth. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
OLDNEW
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 consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 'protocol/rtp_video_reader.cc', 797 'protocol/rtp_video_reader.cc',
798 'protocol/rtp_video_reader.h', 798 'protocol/rtp_video_reader.h',
799 'protocol/rtp_video_writer.cc', 799 'protocol/rtp_video_writer.cc',
800 'protocol/rtp_video_writer.h', 800 'protocol/rtp_video_writer.h',
801 'protocol/rtp_writer.cc', 801 'protocol/rtp_writer.cc',
802 'protocol/rtp_writer.h', 802 'protocol/rtp_writer.h',
803 'protocol/session.h', 803 'protocol/session.h',
804 'protocol/session_config.cc', 804 'protocol/session_config.cc',
805 'protocol/session_config.h', 805 'protocol/session_config.h',
806 'protocol/session_manager.h', 806 'protocol/session_manager.h',
807 'protocol/simple_client_authenticator.cc',
808 'protocol/simple_client_authenticator.h',
807 'protocol/simple_client_channel_authenticator.cc', 809 'protocol/simple_client_channel_authenticator.cc',
808 'protocol/simple_client_channel_authenticator.h', 810 'protocol/simple_client_channel_authenticator.h',
811 'protocol/simple_host_authenticator.cc',
812 'protocol/simple_host_authenticator.h',
809 'protocol/simple_host_channel_authenticator.cc', 813 'protocol/simple_host_channel_authenticator.cc',
810 'protocol/simple_host_channel_authenticator.h', 814 'protocol/simple_host_channel_authenticator.h',
811 'protocol/socket_reader_base.cc', 815 'protocol/socket_reader_base.cc',
812 'protocol/socket_reader_base.h', 816 'protocol/socket_reader_base.h',
813 'protocol/transport_config.cc', 817 'protocol/transport_config.cc',
814 'protocol/transport_config.h', 818 'protocol/transport_config.h',
815 'protocol/util.cc', 819 'protocol/util.cc',
816 'protocol/util.h', 820 'protocol/util.h',
817 'protocol/video_reader.cc', 821 'protocol/video_reader.cc',
818 'protocol/video_reader.h', 822 'protocol/video_reader.h',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 'protocol/fake_session.cc', 923 'protocol/fake_session.cc',
920 'protocol/fake_session.h', 924 'protocol/fake_session.h',
921 'protocol/jingle_messages_unittest.cc', 925 'protocol/jingle_messages_unittest.cc',
922 'protocol/jingle_session_unittest.cc', 926 'protocol/jingle_session_unittest.cc',
923 'protocol/message_decoder_unittest.cc', 927 'protocol/message_decoder_unittest.cc',
924 'protocol/message_reader_unittest.cc', 928 'protocol/message_reader_unittest.cc',
925 'protocol/protocol_mock_objects.cc', 929 'protocol/protocol_mock_objects.cc',
926 'protocol/protocol_mock_objects.h', 930 'protocol/protocol_mock_objects.h',
927 'protocol/rtp_video_reader_unittest.cc', 931 'protocol/rtp_video_reader_unittest.cc',
928 'protocol/rtp_video_writer_unittest.cc', 932 'protocol/rtp_video_writer_unittest.cc',
933 'protocol/simple_authenticator_unittest.cc',
929 'run_all_unittests.cc', 934 'run_all_unittests.cc',
930 ], 935 ],
931 'conditions': [ 936 'conditions': [
932 ['toolkit_uses_gtk == 1', { 937 ['toolkit_uses_gtk == 1', {
933 'dependencies': [ 938 'dependencies': [
934 # Needed for the following #include chain: 939 # Needed for the following #include chain:
935 # base/run_all_unittests.cc 940 # base/run_all_unittests.cc
936 # ../base/test_suite.h 941 # ../base/test_suite.h
937 # gtk/gtk.h 942 # gtk/gtk.h
938 '../build/linux/system.gyp:gtk', 943 '../build/linux/system.gyp:gtk',
939 '../build/linux/system.gyp:ssl', 944 '../build/linux/system.gyp:ssl',
940 ], 945 ],
941 'conditions': [ 946 'conditions': [
942 [ 'linux_use_tcmalloc==1', { 947 [ 'linux_use_tcmalloc==1', {
943 'dependencies': [ 948 'dependencies': [
944 '../base/allocator/allocator.gyp:allocator', 949 '../base/allocator/allocator.gyp:allocator',
945 ], 950 ],
946 }, 951 },
947 ], 952 ],
948 ], 953 ],
949 }], 954 }],
950 ], # end of 'conditions' 955 ], # end of 'conditions'
951 }, # end of target 'remoting_unittests' 956 }, # end of target 'remoting_unittests'
952 ], # end of targets 957 ], # end of targets
953 } 958 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698