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

Side by Side Diff: remoting/remoting.gyp

Issue 4136010: Cleanups in the video encoding decoding code. Reenable VP8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed arm build Created 10 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/protocol/message_decoder_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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 'hard_dependency': 1, 131 'hard_dependency': 1,
132 'sources': [ 132 'sources': [
133 'base/capture_data.cc', 133 'base/capture_data.cc',
134 'base/capture_data.h', 134 'base/capture_data.h',
135 'base/compressor.h', 135 'base/compressor.h',
136 'base/compressor_zlib.cc', 136 'base/compressor_zlib.cc',
137 'base/compressor_zlib.h', 137 'base/compressor_zlib.h',
138 'base/constants.cc', 138 'base/constants.cc',
139 'base/constants.h', 139 'base/constants.h',
140 'base/decoder.h', 140 'base/decoder.h',
141 # BUG57374,BUG57266 'base/decoder_vp8.cc', 141 'base/decoder_vp8.cc',
142 # BUG57374,BUG57266 'base/decoder_vp8.h', 142 'base/decoder_vp8.h',
143 'base/decoder_row_based.cc', 143 'base/decoder_row_based.cc',
144 'base/decoder_row_based.h', 144 'base/decoder_row_based.h',
145 'base/decompressor.h', 145 'base/decompressor.h',
146 'base/decompressor_verbatim.cc', 146 'base/decompressor_verbatim.cc',
147 'base/decompressor_verbatim.h', 147 'base/decompressor_verbatim.h',
148 'base/decompressor_zlib.cc', 148 'base/decompressor_zlib.cc',
149 'base/decompressor_zlib.h', 149 'base/decompressor_zlib.h',
150 'base/encoder.h', 150 'base/encoder.h',
151 'base/encoder_verbatim.cc', 151 'base/encoder_verbatim.cc',
152 'base/encoder_verbatim.h', 152 'base/encoder_verbatim.h',
153 # BUG57374 'base/encoder_vp8.cc', 153 'base/encoder_vp8.cc',
154 # BUG57374 'base/encoder_vp8.h', 154 'base/encoder_vp8.h',
155 'base/encoder_zlib.cc', 155 'base/encoder_zlib.cc',
156 'base/encoder_zlib.h', 156 'base/encoder_zlib.h',
157 'base/multiple_array_input_stream.cc', 157 'base/multiple_array_input_stream.cc',
158 'base/multiple_array_input_stream.h', 158 'base/multiple_array_input_stream.h',
159 'base/tracer.cc', 159 'base/tracer.cc',
160 'base/tracer.h', 160 'base/tracer.h',
161 'base/types.h', 161 'base/types.h',
162 'base/util.cc', 162 'base/util.cc',
163 'base/util.h', 163 'base/util.h',
164 ], 164 ],
165 'conditions': [
166 ['target_arch=="arm"', {
167 'sources!': [
168 'base/decoder_vp8.cc',
169 'base/decoder_vp8.h',
170 'base/encoder_vp8.cc',
171 'base/encoder_vp8.h',
172 ],
173 }],
174 ],
165 }, # end of target 'chromoting_base' 175 }, # end of target 'chromoting_base'
166 176
167 { 177 {
168 'target_name': 'chromoting_host', 178 'target_name': 'chromoting_host',
169 'type': '<(library)', 179 'type': '<(library)',
170 'dependencies': [ 180 'dependencies': [
171 'chromoting_base', 181 'chromoting_base',
172 'chromoting_jingle_glue', 182 'chromoting_jingle_glue',
173 'chromoting_protocol', 183 'chromoting_protocol',
174 ], 184 ],
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 '../testing/gmock.gyp:gmock', 423 '../testing/gmock.gyp:gmock',
414 '../testing/gtest.gyp:gtest', 424 '../testing/gtest.gyp:gtest',
415 ], 425 ],
416 'include_dirs': [ 426 'include_dirs': [
417 '../testing/gmock/include', 427 '../testing/gmock/include',
418 ], 428 ],
419 'sources': [ 429 'sources': [
420 # BUG57351 'base/codec_test.cc', 430 # BUG57351 'base/codec_test.cc',
421 # BUG57351 'base/codec_test.h', 431 # BUG57351 'base/codec_test.h',
422 'base/compressor_zlib_unittest.cc', 432 'base/compressor_zlib_unittest.cc',
423 # BUG57374 'base/decoder_vp8_unittest.cc', 433 # BUG57351 'base/decoder_vp8_unittest.cc',
424 'base/decompressor_zlib_unittest.cc', 434 'base/decompressor_zlib_unittest.cc',
425 # BUG57351 'base/encode_decode_unittest.cc', 435 # BUG57351 'base/encode_decode_unittest.cc',
426 # BUG57351 'base/encoder_verbatim_unittest.cc', 436 # BUG57351 'base/encoder_verbatim_unittest.cc',
427 # BUG57374 'base/encoder_vp8_unittest.cc', 437 # BUG57351 'base/encoder_vp8_unittest.cc',
428 # BUG57351 'base/encoder_zlib_unittest.cc', 438 # BUG57351 'base/encoder_zlib_unittest.cc',
429 'base/mock_objects.h', 439 'base/mock_objects.h',
430 'base/multiple_array_input_stream_unittest.cc', 440 'base/multiple_array_input_stream_unittest.cc',
431 # BUG57351 'client/chromoting_view_unittest.cc', 441 # BUG57351 'client/chromoting_view_unittest.cc',
432 'client/mock_objects.h', 442 'client/mock_objects.h',
433 'host/access_verifier_unittest.cc', 443 'host/access_verifier_unittest.cc',
434 'host/chromoting_host_context_unittest.cc', 444 'host/chromoting_host_context_unittest.cc',
435 'host/client_connection_unittest.cc', 445 'host/client_connection_unittest.cc',
436 'host/differ_unittest.cc', 446 'host/differ_unittest.cc',
437 'host/differ_block_unittest.cc', 447 'host/differ_block_unittest.cc',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 ], # end of 'conditions' 499 ], # end of 'conditions'
490 }, # end of target 'chromoting_unittests' 500 }, # end of target 'chromoting_unittests'
491 ], # end of targets 501 ], # end of targets
492 } 502 }
493 503
494 # Local Variables: 504 # Local Variables:
495 # tab-width:2 505 # tab-width:2
496 # indent-tabs-mode:nil 506 # indent-tabs-mode:nil
497 # End: 507 # End:
498 # vim: set expandtab tabstop=2 shiftwidth=2: 508 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/protocol/message_decoder_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698