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

Side by Side Diff: remoting/remoting.gyp

Issue 3305001: Move decoder into separate thread, clean up API layering, and redo update protocl (Closed)
Patch Set: Fix compile error. Created 10 years, 2 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
« no previous file with comments | « remoting/host/simple_host_process.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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 # depend on chromotocol_proto_lib for headers. 128 # depend on chromotocol_proto_lib for headers.
129 'hard_dependency': 1, 129 'hard_dependency': 1,
130 'sources': [ 130 'sources': [
131 'base/capture_data.h', 131 'base/capture_data.h',
132 'base/compressor.h', 132 'base/compressor.h',
133 'base/compressor_zlib.cc', 133 'base/compressor_zlib.cc',
134 'base/compressor_zlib.h', 134 'base/compressor_zlib.h',
135 'base/constants.cc', 135 'base/constants.cc',
136 'base/constants.h', 136 'base/constants.h',
137 'base/decoder.h', 137 'base/decoder.h',
138 'base/decoder_verbatim.cc', 138 # BUG57374,BUG57266 'base/decoder_vp8.cc',
139 'base/decoder_verbatim.h', 139 # BUG57374,BUG57266 'base/decoder_vp8.h',
140 'base/decoder_vp8.cc', 140 'base/decoder_row_based.cc',
141 'base/decoder_vp8.h', 141 'base/decoder_row_based.h',
142 'base/decoder_zlib.cc',
143 'base/decoder_zlib.h',
144 'base/decompressor.h', 142 'base/decompressor.h',
143 'base/decompressor_verbatim.cc',
144 'base/decompressor_verbatim.h',
145 'base/decompressor_zlib.cc', 145 'base/decompressor_zlib.cc',
146 'base/decompressor_zlib.h', 146 'base/decompressor_zlib.h',
147 'base/encoder.h', 147 'base/encoder.h',
148 'base/encoder_verbatim.cc', 148 'base/encoder_verbatim.cc',
149 'base/encoder_verbatim.h', 149 'base/encoder_verbatim.h',
150 'base/encoder_vp8.cc', 150 # BUG57374 'base/encoder_vp8.cc',
151 'base/encoder_vp8.h', 151 # BUG57374 'base/encoder_vp8.h',
152 'base/encoder_zlib.cc', 152 'base/encoder_zlib.cc',
153 'base/encoder_zlib.h', 153 'base/encoder_zlib.h',
154 'base/multiple_array_input_stream.cc', 154 'base/multiple_array_input_stream.cc',
155 'base/multiple_array_input_stream.h', 155 'base/multiple_array_input_stream.h',
156 'base/protocol_decoder.cc', 156 'base/protocol_decoder.cc',
157 'base/protocol_decoder.h', 157 'base/protocol_decoder.h',
158 'base/protocol_util.cc', 158 'base/protocol_util.cc',
159 'base/protocol_util.h', 159 'base/protocol_util.h',
160 'base/tracer.cc', 160 'base/tracer.cc',
161 'base/tracer.h', 161 'base/tracer.h',
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 '../base/base.gyp:base_i18n', 392 '../base/base.gyp:base_i18n',
393 '../base/base.gyp:test_support_base', 393 '../base/base.gyp:test_support_base',
394 '../gfx/gfx.gyp:gfx', 394 '../gfx/gfx.gyp:gfx',
395 '../testing/gmock.gyp:gmock', 395 '../testing/gmock.gyp:gmock',
396 '../testing/gtest.gyp:gtest', 396 '../testing/gtest.gyp:gtest',
397 ], 397 ],
398 'include_dirs': [ 398 'include_dirs': [
399 '../testing/gmock/include', 399 '../testing/gmock/include',
400 ], 400 ],
401 'sources': [ 401 'sources': [
402 'base/codec_test.cc', 402 # BUG57351 'base/codec_test.cc',
403 'base/codec_test.h', 403 # BUG57351 'base/codec_test.h',
404 'base/compressor_zlib_unittest.cc', 404 'base/compressor_zlib_unittest.cc',
405 'base/decoder_verbatim_unittest.cc', 405 # BUG57374 'base/decoder_vp8_unittest.cc',
406 'base/decoder_zlib_unittest.cc',
407 'base/decompressor_zlib_unittest.cc', 406 'base/decompressor_zlib_unittest.cc',
408 'base/encoder_verbatim_unittest.cc', 407 # BUG57351 'base/encode_decode_unittest.cc',
409 # These two tests are disabled due to threading problems in libvpx. 408 # BUG57351 'base/encoder_verbatim_unittest.cc',
410 # See bug: http://crbug.com/57266 409 # BUG57374 'base/encoder_vp8_unittest.cc',
411 # 'base/decoder_vp8_unittest.cc', 410 # BUG57351 'base/encoder_zlib_unittest.cc',
412 # 'base/encoder_vp8_unittest.cc',
413 'base/encoder_zlib_unittest.cc',
414 'base/mock_objects.h', 411 'base/mock_objects.h',
415 'base/multiple_array_input_stream_unittest.cc', 412 'base/multiple_array_input_stream_unittest.cc',
416 'base/protocol_decoder_unittest.cc', 413 # BUG57351 'base/protocol_decoder_unittest.cc',
417 'client/chromoting_view_unittest.cc', 414 # BUG57351 'client/chromoting_view_unittest.cc',
418 'client/mock_objects.h', 415 'client/mock_objects.h',
419 'host/access_verifier_unittest.cc', 416 'host/access_verifier_unittest.cc',
420 'host/chromoting_host_context_unittest.cc', 417 'host/chromoting_host_context_unittest.cc',
421 'host/client_connection_unittest.cc', 418 'host/client_connection_unittest.cc',
422 'host/differ_unittest.cc', 419 'host/differ_unittest.cc',
423 'host/differ_block_unittest.cc', 420 'host/differ_block_unittest.cc',
424 'host/heartbeat_sender_unittest.cc', 421 'host/heartbeat_sender_unittest.cc',
425 'host/host_key_pair_unittest.cc', 422 'host/host_key_pair_unittest.cc',
426 'host/json_host_config_unittest.cc', 423 'host/json_host_config_unittest.cc',
427 'host/mock_objects.h', 424 'host/mock_objects.h',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 ], # end of 'conditions' 462 ], # end of 'conditions'
466 }, # end of target 'chromoting_unittests' 463 }, # end of target 'chromoting_unittests'
467 ], # end of targets 464 ], # end of targets
468 } 465 }
469 466
470 # Local Variables: 467 # Local Variables:
471 # tab-width:2 468 # tab-width:2
472 # indent-tabs-mode:nil 469 # indent-tabs-mode:nil
473 # End: 470 # End:
474 # vim: set expandtab tabstop=2 shiftwidth=2: 471 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/host/simple_host_process.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698