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

Side by Side Diff: remoting/remoting.gyp

Issue 4779001: Added CompoundBuffer that will be used to store data in the encoding/decoding (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - 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/util.h ('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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'export_dependent_settings': [ 125 'export_dependent_settings': [
126 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 126 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
127 'proto/chromotocol.gyp:chromotocol_proto_lib', 127 'proto/chromotocol.gyp:chromotocol_proto_lib',
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',
136 'base/compound_buffer.h',
135 'base/compressor.h', 137 'base/compressor.h',
136 'base/compressor_zlib.cc', 138 'base/compressor_zlib.cc',
137 'base/compressor_zlib.h', 139 'base/compressor_zlib.h',
138 'base/constants.cc', 140 'base/constants.cc',
139 'base/constants.h', 141 'base/constants.h',
140 'base/decoder.h', 142 'base/decoder.h',
141 'base/decoder_vp8.cc', 143 'base/decoder_vp8.cc',
142 'base/decoder_vp8.h', 144 'base/decoder_vp8.h',
143 'base/decoder_row_based.cc', 145 'base/decoder_row_based.cc',
144 'base/decoder_row_based.h', 146 'base/decoder_row_based.h',
145 'base/decompressor.h', 147 'base/decompressor.h',
146 'base/decompressor_verbatim.cc', 148 'base/decompressor_verbatim.cc',
147 'base/decompressor_verbatim.h', 149 'base/decompressor_verbatim.h',
148 'base/decompressor_zlib.cc', 150 'base/decompressor_zlib.cc',
149 'base/decompressor_zlib.h', 151 'base/decompressor_zlib.h',
150 'base/encoder.h', 152 'base/encoder.h',
151 'base/encoder_verbatim.cc', 153 'base/encoder_verbatim.cc',
152 'base/encoder_verbatim.h', 154 'base/encoder_verbatim.h',
153 'base/encoder_vp8.cc', 155 'base/encoder_vp8.cc',
154 'base/encoder_vp8.h', 156 'base/encoder_vp8.h',
155 'base/encoder_zlib.cc', 157 'base/encoder_zlib.cc',
156 'base/encoder_zlib.h', 158 'base/encoder_zlib.h',
157 'base/multiple_array_input_stream.cc',
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': [ 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 '../gfx/gfx.gyp:gfx', 441 '../gfx/gfx.gyp:gfx',
442 '../testing/gmock.gyp:gmock', 442 '../testing/gmock.gyp:gmock',
443 '../testing/gtest.gyp:gtest', 443 '../testing/gtest.gyp:gtest',
444 ], 444 ],
445 'include_dirs': [ 445 'include_dirs': [
446 '../testing/gmock/include', 446 '../testing/gmock/include',
447 ], 447 ],
448 'sources': [ 448 'sources': [
449 # BUG57351 'base/codec_test.cc', 449 # BUG57351 'base/codec_test.cc',
450 # BUG57351 'base/codec_test.h', 450 # BUG57351 'base/codec_test.h',
451 'base/compound_buffer_unittest.cc',
451 'base/compressor_zlib_unittest.cc', 452 'base/compressor_zlib_unittest.cc',
452 # BUG57351 'base/decoder_vp8_unittest.cc', 453 # BUG57351 'base/decoder_vp8_unittest.cc',
453 'base/decompressor_zlib_unittest.cc', 454 'base/decompressor_zlib_unittest.cc',
454 # BUG57351 'base/encode_decode_unittest.cc', 455 # BUG57351 'base/encode_decode_unittest.cc',
455 # BUG57351 'base/encoder_verbatim_unittest.cc', 456 # BUG57351 'base/encoder_verbatim_unittest.cc',
456 # BUG57351 'base/encoder_vp8_unittest.cc', 457 # BUG57351 'base/encoder_vp8_unittest.cc',
457 # BUG57351 'base/encoder_zlib_unittest.cc', 458 # BUG57351 'base/encoder_zlib_unittest.cc',
458 'base/mock_objects.h', 459 'base/mock_objects.h',
459 'base/multiple_array_input_stream_unittest.cc',
460 # BUG57351 'client/chromoting_view_unittest.cc', 460 # BUG57351 'client/chromoting_view_unittest.cc',
461 'client/mock_objects.h', 461 'client/mock_objects.h',
462 'host/access_verifier_unittest.cc', 462 'host/access_verifier_unittest.cc',
463 'host/chromoting_host_context_unittest.cc', 463 'host/chromoting_host_context_unittest.cc',
464 'host/differ_unittest.cc', 464 'host/differ_unittest.cc',
465 'host/differ_block_unittest.cc', 465 'host/differ_block_unittest.cc',
466 'host/heartbeat_sender_unittest.cc', 466 'host/heartbeat_sender_unittest.cc',
467 'host/host_key_pair_unittest.cc', 467 'host/host_key_pair_unittest.cc',
468 'host/json_host_config_unittest.cc', 468 'host/json_host_config_unittest.cc',
469 'host/mock_objects.h', 469 'host/mock_objects.h',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 ], # end of 'conditions' 520 ], # end of 'conditions'
521 }, # end of target 'chromoting_unittests' 521 }, # end of target 'chromoting_unittests'
522 ], # end of targets 522 ], # end of targets
523 } 523 }
524 524
525 # Local Variables: 525 # Local Variables:
526 # tab-width:2 526 # tab-width:2
527 # indent-tabs-mode:nil 527 # indent-tabs-mode:nil
528 # End: 528 # End:
529 # vim: set expandtab tabstop=2 shiftwidth=2: 529 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/protocol/util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698