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

Side by Side Diff: remoting/remoting.gyp

Issue 5382008: Refactor ZLib and Verbatim encoders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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) 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 ], 128 ],
129 # This target needs a hard dependency because dependent targets 129 # This target needs a hard dependency because dependent targets
130 # depend on chromotocol_proto_lib for headers. 130 # depend on chromotocol_proto_lib for headers.
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/compound_buffer.cc', 135 'base/compound_buffer.cc',
136 'base/compound_buffer.h', 136 'base/compound_buffer.h',
137 'base/compressor.h', 137 'base/compressor.h',
138 'base/compressor_verbatim.cc',
139 'base/compressor_verbatim.h',
138 'base/compressor_zlib.cc', 140 'base/compressor_zlib.cc',
139 'base/compressor_zlib.h', 141 'base/compressor_zlib.h',
140 'base/constants.cc', 142 'base/constants.cc',
141 'base/constants.h', 143 'base/constants.h',
142 'base/decoder.h', 144 'base/decoder.h',
143 'base/decoder_vp8.cc', 145 'base/decoder_vp8.cc',
144 'base/decoder_vp8.h', 146 'base/decoder_vp8.h',
145 'base/decoder_row_based.cc', 147 'base/decoder_row_based.cc',
146 'base/decoder_row_based.h', 148 'base/decoder_row_based.h',
147 'base/decompressor.h', 149 'base/decompressor.h',
148 'base/decompressor_verbatim.cc', 150 'base/decompressor_verbatim.cc',
149 'base/decompressor_verbatim.h', 151 'base/decompressor_verbatim.h',
150 'base/decompressor_zlib.cc', 152 'base/decompressor_zlib.cc',
151 'base/decompressor_zlib.h', 153 'base/decompressor_zlib.h',
152 'base/encoder.h', 154 'base/encoder.h',
153 'base/encoder_verbatim.cc',
154 'base/encoder_verbatim.h',
155 'base/encoder_vp8.cc', 155 'base/encoder_vp8.cc',
156 'base/encoder_vp8.h', 156 'base/encoder_vp8.h',
157 'base/encoder_zlib.cc', 157 'base/encoder_row_based.cc',
158 'base/encoder_zlib.h', 158 'base/encoder_row_based.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': [ 165 'conditions': [
166 ['target_arch=="arm"', { 166 ['target_arch=="arm"', {
167 'sources!': [ 167 'sources!': [
168 'base/decoder_vp8.cc', 168 'base/decoder_vp8.cc',
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 '../testing/gmock/include', 450 '../testing/gmock/include',
451 ], 451 ],
452 'sources': [ 452 'sources': [
453 # BUG57351 'base/codec_test.cc', 453 # BUG57351 'base/codec_test.cc',
454 # BUG57351 'base/codec_test.h', 454 # BUG57351 'base/codec_test.h',
455 'base/compound_buffer_unittest.cc', 455 'base/compound_buffer_unittest.cc',
456 'base/compressor_zlib_unittest.cc', 456 'base/compressor_zlib_unittest.cc',
457 # BUG57351 'base/decoder_vp8_unittest.cc', 457 # BUG57351 'base/decoder_vp8_unittest.cc',
458 'base/decompressor_zlib_unittest.cc', 458 'base/decompressor_zlib_unittest.cc',
459 # BUG57351 'base/encode_decode_unittest.cc', 459 # BUG57351 'base/encode_decode_unittest.cc',
460 # BUG57351 'base/encoder_verbatim_unittest.cc',
461 # BUG57351 'base/encoder_vp8_unittest.cc', 460 # BUG57351 'base/encoder_vp8_unittest.cc',
462 # BUG57351 'base/encoder_zlib_unittest.cc', 461 # BUG57351 'base/encoder_row_based_unittest.cc',
Alpha Left Google 2010/12/02 19:39:55 enable this test case?
Sergey Ulanov 2010/12/03 00:17:21 This test requires codec_test.cc, and the code in
463 'base/mock_objects.h', 462 'base/mock_objects.h',
464 # BUG57351 'client/chromoting_view_unittest.cc', 463 # BUG57351 'client/chromoting_view_unittest.cc',
465 'client/mock_objects.h', 464 'client/mock_objects.h',
466 'host/access_verifier_unittest.cc', 465 'host/access_verifier_unittest.cc',
467 'host/chromoting_host_context_unittest.cc', 466 'host/chromoting_host_context_unittest.cc',
468 'host/differ_unittest.cc', 467 'host/differ_unittest.cc',
469 'host/differ_block_unittest.cc', 468 'host/differ_block_unittest.cc',
470 'host/heartbeat_sender_unittest.cc', 469 'host/heartbeat_sender_unittest.cc',
471 'host/host_key_pair_unittest.cc', 470 'host/host_key_pair_unittest.cc',
472 'host/json_host_config_unittest.cc', 471 'host/json_host_config_unittest.cc',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 ], # end of 'conditions' 524 ], # end of 'conditions'
526 }, # end of target 'chromoting_unittests' 525 }, # end of target 'chromoting_unittests'
527 ], # end of targets 526 ], # end of targets
528 } 527 }
529 528
530 # Local Variables: 529 # Local Variables:
531 # tab-width:2 530 # tab-width:2
532 # indent-tabs-mode:nil 531 # indent-tabs-mode:nil
533 # End: 532 # End:
534 # vim: set expandtab tabstop=2 shiftwidth=2: 533 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« remoting/host/capturer_linux.cc ('K') | « remoting/protocol/mock_objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698