| OLD | NEW |
| 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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/socket_reader_base.cc', | 807 'protocol/socket_reader_base.cc', |
| 808 'protocol/socket_reader_base.h', | 808 'protocol/socket_reader_base.h', |
| 809 'protocol/transport_config.cc', | 809 'protocol/transport_config.cc', |
| 810 'protocol/transport_config.h', | 810 'protocol/transport_config.h', |
| 811 'protocol/util.cc', | 811 'protocol/util.cc', |
| 812 'protocol/util.h', | 812 'protocol/util.h', |
| 813 'protocol/v1_authenticator.cc', |
| 814 'protocol/v1_authenticator.h', |
| 813 'protocol/v1_client_channel_authenticator.cc', | 815 'protocol/v1_client_channel_authenticator.cc', |
| 814 'protocol/v1_client_channel_authenticator.h', | 816 'protocol/v1_client_channel_authenticator.h', |
| 815 'protocol/v1_host_channel_authenticator.cc', | 817 'protocol/v1_host_channel_authenticator.cc', |
| 816 'protocol/v1_host_channel_authenticator.h', | 818 'protocol/v1_host_channel_authenticator.h', |
| 817 'protocol/video_reader.cc', | 819 'protocol/video_reader.cc', |
| 818 'protocol/video_reader.h', | 820 'protocol/video_reader.h', |
| 819 'protocol/video_stub.h', | 821 'protocol/video_stub.h', |
| 820 'protocol/video_writer.cc', | 822 'protocol/video_writer.cc', |
| 821 'protocol/video_writer.h', | 823 'protocol/video_writer.h', |
| 822 ], | 824 ], |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 'protocol/fake_session.cc', | 921 'protocol/fake_session.cc', |
| 920 'protocol/fake_session.h', | 922 'protocol/fake_session.h', |
| 921 'protocol/jingle_messages_unittest.cc', | 923 'protocol/jingle_messages_unittest.cc', |
| 922 'protocol/jingle_session_unittest.cc', | 924 'protocol/jingle_session_unittest.cc', |
| 923 'protocol/message_decoder_unittest.cc', | 925 'protocol/message_decoder_unittest.cc', |
| 924 'protocol/message_reader_unittest.cc', | 926 'protocol/message_reader_unittest.cc', |
| 925 'protocol/protocol_mock_objects.cc', | 927 'protocol/protocol_mock_objects.cc', |
| 926 'protocol/protocol_mock_objects.h', | 928 'protocol/protocol_mock_objects.h', |
| 927 'protocol/rtp_video_reader_unittest.cc', | 929 'protocol/rtp_video_reader_unittest.cc', |
| 928 'protocol/rtp_video_writer_unittest.cc', | 930 'protocol/rtp_video_writer_unittest.cc', |
| 931 'protocol/v1_authenticator_unittest.cc', |
| 929 'run_all_unittests.cc', | 932 'run_all_unittests.cc', |
| 930 ], | 933 ], |
| 931 'conditions': [ | 934 'conditions': [ |
| 932 ['toolkit_uses_gtk == 1', { | 935 ['toolkit_uses_gtk == 1', { |
| 933 'dependencies': [ | 936 'dependencies': [ |
| 934 # Needed for the following #include chain: | 937 # Needed for the following #include chain: |
| 935 # base/run_all_unittests.cc | 938 # base/run_all_unittests.cc |
| 936 # ../base/test_suite.h | 939 # ../base/test_suite.h |
| 937 # gtk/gtk.h | 940 # gtk/gtk.h |
| 938 '../build/linux/system.gyp:gtk', | 941 '../build/linux/system.gyp:gtk', |
| 939 '../build/linux/system.gyp:ssl', | 942 '../build/linux/system.gyp:ssl', |
| 940 ], | 943 ], |
| 941 'conditions': [ | 944 'conditions': [ |
| 942 [ 'linux_use_tcmalloc==1', { | 945 [ 'linux_use_tcmalloc==1', { |
| 943 'dependencies': [ | 946 'dependencies': [ |
| 944 '../base/allocator/allocator.gyp:allocator', | 947 '../base/allocator/allocator.gyp:allocator', |
| 945 ], | 948 ], |
| 946 }, | 949 }, |
| 947 ], | 950 ], |
| 948 ], | 951 ], |
| 949 }], | 952 }], |
| 950 ], # end of 'conditions' | 953 ], # end of 'conditions' |
| 951 }, # end of target 'remoting_unittests' | 954 }, # end of target 'remoting_unittests' |
| 952 ], # end of targets | 955 ], # end of targets |
| 953 } | 956 } |
| OLD | NEW |