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

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: 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
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 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 'base/capture_data.h', 1128 'base/capture_data.h',
1129 'base/compound_buffer.cc', 1129 'base/compound_buffer.cc',
1130 'base/compound_buffer.h', 1130 'base/compound_buffer.h',
1131 'base/compressor.h', 1131 'base/compressor.h',
1132 'base/compressor_verbatim.cc', 1132 'base/compressor_verbatim.cc',
1133 'base/compressor_verbatim.h', 1133 'base/compressor_verbatim.h',
1134 'base/compressor_zlib.cc', 1134 'base/compressor_zlib.cc',
1135 'base/compressor_zlib.h', 1135 'base/compressor_zlib.h',
1136 'base/constants.cc', 1136 'base/constants.cc',
1137 'base/constants.h', 1137 'base/constants.h',
1138 'base/decoder.h',
1139 'base/decoder_vp8.cc',
1140 'base/decoder_vp8.h',
1141 'base/decoder_row_based.cc',
1142 'base/decoder_row_based.h',
1143 'base/decompressor.h', 1138 'base/decompressor.h',
1144 'base/decompressor_verbatim.cc', 1139 'base/decompressor_verbatim.cc',
1145 'base/decompressor_verbatim.h', 1140 'base/decompressor_verbatim.h',
1146 'base/decompressor_zlib.cc', 1141 'base/decompressor_zlib.cc',
1147 'base/decompressor_zlib.h', 1142 'base/decompressor_zlib.h',
1148 'base/encoder.h',
1149 'base/encoder_vp8.cc',
1150 'base/encoder_vp8.h',
1151 'base/encoder_row_based.cc',
1152 'base/encoder_row_based.h',
1153 'base/plugin_thread_task_runner.cc', 1143 'base/plugin_thread_task_runner.cc',
1154 'base/plugin_thread_task_runner.h', 1144 'base/plugin_thread_task_runner.h',
1155 'base/rate_counter.cc', 1145 'base/rate_counter.cc',
1156 'base/rate_counter.h', 1146 'base/rate_counter.h',
1157 'base/running_average.cc', 1147 'base/running_average.cc',
1158 'base/running_average.h', 1148 'base/running_average.h',
1159 'base/stoppable.cc', 1149 'base/stoppable.cc',
1160 'base/stoppable.h', 1150 'base/stoppable.h',
1161 'base/util.cc', 1151 'base/util.cc',
1162 'base/util.h', 1152 'base/util.h',
1163 # TODO(kxing): Seperate the audio and video codec files into a separate 1153 # TODO(kxing): Seperate the audio and video codec files into a separate
1164 # target. 1154 # target.
1165 'codec/audio_decoder.cc', 1155 'codec/audio_decoder.cc',
1166 'codec/audio_decoder.h', 1156 'codec/audio_decoder.h',
1167 'codec/audio_decoder_verbatim.cc', 1157 'codec/audio_decoder_verbatim.cc',
1168 'codec/audio_decoder_verbatim.h', 1158 'codec/audio_decoder_verbatim.h',
1169 'codec/audio_encoder.h', 1159 'codec/audio_encoder.h',
1170 'codec/audio_encoder_verbatim.cc', 1160 'codec/audio_encoder_verbatim.cc',
1171 'codec/audio_encoder_verbatim.h', 1161 'codec/audio_encoder_verbatim.h',
1162 'codec/video_decoder.h',
1163 'codec/video_decoder_vp8.cc',
1164 'codec/video_decoder_vp8.h',
1165 'codec/video_decoder_row_based.cc',
1166 'codec/video_decoder_row_based.h',
1167 'codec/video_encoder.h',
1168 'codec/video_encoder_vp8.cc',
1169 'codec/video_encoder_vp8.h',
1170 'codec/video_encoder_row_based.cc',
1171 'codec/video_encoder_row_based.h',
1172 ], 1172 ],
1173 }, # end of target 'remoting_base' 1173 }, # end of target 'remoting_base'
1174 1174
1175 { 1175 {
1176 'target_name': 'remoting_host', 1176 'target_name': 'remoting_host',
1177 'type': 'static_library', 1177 'type': 'static_library',
1178 'variables': { 'enable_wexit_time_destructors': 1, }, 1178 'variables': { 'enable_wexit_time_destructors': 1, },
1179 'dependencies': [ 1179 'dependencies': [
1180 'remoting_base', 1180 'remoting_base',
1181 'remoting_jingle_glue', 1181 'remoting_jingle_glue',
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
1710 '../ppapi/ppapi.gyp:ppapi_cpp', 1710 '../ppapi/ppapi.gyp:ppapi_cpp',
1711 '../testing/gmock.gyp:gmock', 1711 '../testing/gmock.gyp:gmock',
1712 '../testing/gtest.gyp:gtest', 1712 '../testing/gtest.gyp:gtest',
1713 '../ui/ui.gyp:ui', 1713 '../ui/ui.gyp:ui',
1714 ], 1714 ],
1715 'include_dirs': [ 1715 'include_dirs': [
1716 '../testing/gmock/include', 1716 '../testing/gmock/include',
1717 ], 1717 ],
1718 'sources': [ 1718 'sources': [
1719 'base/auth_token_util_unittest.cc', 1719 'base/auth_token_util_unittest.cc',
1720 'base/base_mock_objects.cc',
1721 'base/base_mock_objects.h',
1722 'base/breakpad_win_unittest.cc', 1720 'base/breakpad_win_unittest.cc',
1723 'base/codec_test.cc',
1724 'base/codec_test.h',
1725 'base/compound_buffer_unittest.cc', 1721 'base/compound_buffer_unittest.cc',
1726 'base/compressor_zlib_unittest.cc', 1722 'base/compressor_zlib_unittest.cc',
1727 'base/decoder_vp8_unittest.cc',
1728 'base/decompressor_zlib_unittest.cc', 1723 'base/decompressor_zlib_unittest.cc',
1729 'base/encode_decode_unittest.cc',
1730 'base/encoder_vp8_unittest.cc',
1731 'base/encoder_row_based_unittest.cc',
1732 'base/util_unittest.cc', 1724 'base/util_unittest.cc',
1733 'client/key_event_mapper_unittest.cc', 1725 'client/key_event_mapper_unittest.cc',
1734 'client/plugin/mac_key_event_processor_unittest.cc', 1726 'client/plugin/mac_key_event_processor_unittest.cc',
1727 'codec/codec_test.cc',
1728 'codec/codec_test.h',
1729 'codec/mock_video_encoder.cc',
1730 'codec/mock_video_encoder.h',
1731 'codec/video_decoder_vp8_unittest.cc',
1732 'codec/video_encode_decode_unittest.cc',
1733 'codec/video_encoder_row_based_unittest.cc',
1734 'codec/video_encoder_vp8_unittest.cc',
1735 'host/chromoting_host_context_unittest.cc', 1735 'host/chromoting_host_context_unittest.cc',
1736 'host/chromoting_host_unittest.cc', 1736 'host/chromoting_host_unittest.cc',
1737 'host/client_session_unittest.cc', 1737 'host/client_session_unittest.cc',
1738 'host/differ_block_unittest.cc', 1738 'host/differ_block_unittest.cc',
1739 'host/differ_unittest.cc', 1739 'host/differ_unittest.cc',
1740 'host/heartbeat_sender_unittest.cc', 1740 'host/heartbeat_sender_unittest.cc',
1741 'host/host_key_pair_unittest.cc', 1741 'host/host_key_pair_unittest.cc',
1742 'host/host_mock_objects.cc', 1742 'host/host_mock_objects.cc',
1743 'host/host_mock_objects.h', 1743 'host/host_mock_objects.h',
1744 'host/json_host_config_unittest.cc', 1744 'host/json_host_config_unittest.cc',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
1826 '../base/allocator/allocator.gyp:allocator', 1826 '../base/allocator/allocator.gyp:allocator',
1827 ], 1827 ],
1828 }, 1828 },
1829 ], 1829 ],
1830 ], 1830 ],
1831 }], 1831 }],
1832 ], # end of 'conditions' 1832 ], # end of 'conditions'
1833 }, # end of target 'remoting_unittests' 1833 }, # end of target 'remoting_unittests'
1834 ], # end of targets 1834 ], # end of targets
1835 } 1835 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698