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

Side by Side Diff: remoting/remoting.gyp

Issue 10877014: Moved the video encoders/decoders to the codec directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 4 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
« no previous file with comments | « remoting/protocol/connection_to_client_unittest.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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 'base/capture_data.h', 1129 'base/capture_data.h',
1130 'base/compound_buffer.cc', 1130 'base/compound_buffer.cc',
1131 'base/compound_buffer.h', 1131 'base/compound_buffer.h',
1132 'base/compressor.h', 1132 'base/compressor.h',
1133 'base/compressor_verbatim.cc', 1133 'base/compressor_verbatim.cc',
1134 'base/compressor_verbatim.h', 1134 'base/compressor_verbatim.h',
1135 'base/compressor_zlib.cc', 1135 'base/compressor_zlib.cc',
1136 'base/compressor_zlib.h', 1136 'base/compressor_zlib.h',
1137 'base/constants.cc', 1137 'base/constants.cc',
1138 'base/constants.h', 1138 'base/constants.h',
1139 'base/decoder.h',
1140 'base/decoder_vp8.cc',
1141 'base/decoder_vp8.h',
1142 'base/decoder_row_based.cc',
1143 'base/decoder_row_based.h',
1144 'base/decompressor.h', 1139 'base/decompressor.h',
1145 'base/decompressor_verbatim.cc', 1140 'base/decompressor_verbatim.cc',
1146 'base/decompressor_verbatim.h', 1141 'base/decompressor_verbatim.h',
1147 'base/decompressor_zlib.cc', 1142 'base/decompressor_zlib.cc',
1148 'base/decompressor_zlib.h', 1143 'base/decompressor_zlib.h',
1149 'base/encoder.h',
1150 'base/encoder_vp8.cc',
1151 'base/encoder_vp8.h',
1152 'base/encoder_row_based.cc',
1153 'base/encoder_row_based.h',
1154 'base/plugin_thread_task_runner.cc', 1144 'base/plugin_thread_task_runner.cc',
1155 'base/plugin_thread_task_runner.h', 1145 'base/plugin_thread_task_runner.h',
1156 'base/rate_counter.cc', 1146 'base/rate_counter.cc',
1157 'base/rate_counter.h', 1147 'base/rate_counter.h',
1158 'base/running_average.cc', 1148 'base/running_average.cc',
1159 'base/running_average.h', 1149 'base/running_average.h',
1160 'base/stoppable.cc', 1150 'base/stoppable.cc',
1161 'base/stoppable.h', 1151 'base/stoppable.h',
1162 'base/util.cc', 1152 'base/util.cc',
1163 'base/util.h', 1153 'base/util.h',
1164 # TODO(kxing): Seperate the audio and video codec files into a separate 1154 # TODO(kxing): Seperate the audio and video codec files into a separate
1165 # target. 1155 # target.
1166 'codec/audio_decoder.cc', 1156 'codec/audio_decoder.cc',
1167 'codec/audio_decoder.h', 1157 'codec/audio_decoder.h',
1168 'codec/audio_decoder_speex.cc', 1158 'codec/audio_decoder_speex.cc',
1169 'codec/audio_decoder_speex.h', 1159 'codec/audio_decoder_speex.h',
1170 'codec/audio_decoder_verbatim.cc', 1160 'codec/audio_decoder_verbatim.cc',
1171 'codec/audio_decoder_verbatim.h', 1161 'codec/audio_decoder_verbatim.h',
1172 'codec/audio_encoder.h', 1162 'codec/audio_encoder.h',
1173 'codec/audio_encoder_speex.cc', 1163 'codec/audio_encoder_speex.cc',
1174 'codec/audio_encoder_speex.h', 1164 'codec/audio_encoder_speex.h',
1175 'codec/audio_encoder_verbatim.cc', 1165 'codec/audio_encoder_verbatim.cc',
1176 'codec/audio_encoder_verbatim.h', 1166 'codec/audio_encoder_verbatim.h',
1167 'codec/video_decoder.h',
1168 'codec/video_decoder_vp8.cc',
1169 'codec/video_decoder_vp8.h',
1170 'codec/video_decoder_row_based.cc',
1171 'codec/video_decoder_row_based.h',
1172 'codec/video_encoder.h',
1173 'codec/video_encoder_vp8.cc',
1174 'codec/video_encoder_vp8.h',
1175 'codec/video_encoder_row_based.cc',
1176 'codec/video_encoder_row_based.h',
1177 ], 1177 ],
1178 }, # end of target 'remoting_base' 1178 }, # end of target 'remoting_base'
1179 1179
1180 { 1180 {
1181 'target_name': 'remoting_host', 1181 'target_name': 'remoting_host',
1182 'type': 'static_library', 1182 'type': 'static_library',
1183 'variables': { 'enable_wexit_time_destructors': 1, }, 1183 'variables': { 'enable_wexit_time_destructors': 1, },
1184 'dependencies': [ 1184 'dependencies': [
1185 'remoting_base', 1185 'remoting_base',
1186 'remoting_jingle_glue', 1186 'remoting_jingle_glue',
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 '../ppapi/ppapi.gyp:ppapi_cpp', 1715 '../ppapi/ppapi.gyp:ppapi_cpp',
1716 '../testing/gmock.gyp:gmock', 1716 '../testing/gmock.gyp:gmock',
1717 '../testing/gtest.gyp:gtest', 1717 '../testing/gtest.gyp:gtest',
1718 '../ui/ui.gyp:ui', 1718 '../ui/ui.gyp:ui',
1719 ], 1719 ],
1720 'include_dirs': [ 1720 'include_dirs': [
1721 '../testing/gmock/include', 1721 '../testing/gmock/include',
1722 ], 1722 ],
1723 'sources': [ 1723 'sources': [
1724 'base/auth_token_util_unittest.cc', 1724 'base/auth_token_util_unittest.cc',
1725 'base/base_mock_objects.cc',
1726 'base/base_mock_objects.h',
1727 'base/breakpad_win_unittest.cc', 1725 'base/breakpad_win_unittest.cc',
1728 'base/codec_test.cc',
1729 'base/codec_test.h',
1730 'base/compound_buffer_unittest.cc', 1726 'base/compound_buffer_unittest.cc',
1731 'base/compressor_zlib_unittest.cc', 1727 'base/compressor_zlib_unittest.cc',
1732 'base/decoder_vp8_unittest.cc',
1733 'base/decompressor_zlib_unittest.cc', 1728 'base/decompressor_zlib_unittest.cc',
1734 'base/encode_decode_unittest.cc',
1735 'base/encoder_vp8_unittest.cc',
1736 'base/encoder_row_based_unittest.cc',
1737 'base/util_unittest.cc', 1729 'base/util_unittest.cc',
1738 'client/key_event_mapper_unittest.cc', 1730 'client/key_event_mapper_unittest.cc',
1739 'client/plugin/mac_key_event_processor_unittest.cc', 1731 'client/plugin/mac_key_event_processor_unittest.cc',
1732 'codec/codec_test.cc',
1733 'codec/codec_test.h',
1734 'codec/video_decoder_vp8_unittest.cc',
1735 'codec/video_encode_decode_unittest.cc',
1736 'codec/video_encoder_row_based_unittest.cc',
1737 'codec/video_encoder_vp8_unittest.cc',
1740 'host/audio_capturer_win_unittest.cc', 1738 'host/audio_capturer_win_unittest.cc',
1741 'host/chromoting_host_context_unittest.cc', 1739 'host/chromoting_host_context_unittest.cc',
1742 'host/chromoting_host_unittest.cc', 1740 'host/chromoting_host_unittest.cc',
1743 'host/client_session_unittest.cc', 1741 'host/client_session_unittest.cc',
1744 'host/differ_block_unittest.cc', 1742 'host/differ_block_unittest.cc',
1745 'host/differ_unittest.cc', 1743 'host/differ_unittest.cc',
1746 'host/heartbeat_sender_unittest.cc', 1744 'host/heartbeat_sender_unittest.cc',
1747 'host/host_key_pair_unittest.cc', 1745 'host/host_key_pair_unittest.cc',
1748 'host/host_mock_objects.cc', 1746 'host/host_mock_objects.cc',
1749 'host/host_mock_objects.h', 1747 'host/host_mock_objects.h',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
1832 '../base/allocator/allocator.gyp:allocator', 1830 '../base/allocator/allocator.gyp:allocator',
1833 ], 1831 ],
1834 }, 1832 },
1835 ], 1833 ],
1836 ], 1834 ],
1837 }], 1835 }],
1838 ], # end of 'conditions' 1836 ], # end of 'conditions'
1839 }, # end of target 'remoting_unittests' 1837 }, # end of target 'remoting_unittests'
1840 ], # end of targets 1838 ], # end of targets
1841 } 1839 }
OLDNEW
« no previous file with comments | « remoting/protocol/connection_to_client_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698