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

Side by Side Diff: remoting/remoting.gyp

Issue 4255001: Revert 64672 - Cleanups in the video encoding decoding code. Reenable VP8.... (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/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 'base/decoder_vp8.cc', 141 # BUG57374,BUG57266 'base/decoder_vp8.cc',
142 'base/decoder_vp8.h', 142 # BUG57374,BUG57266 '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 'base/encoder_vp8.cc', 153 # BUG57374 'base/encoder_vp8.cc',
154 'base/encoder_vp8.h', 154 # BUG57374 '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 ],
175 }, # end of target 'chromoting_base' 165 }, # end of target 'chromoting_base'
176 166
177 { 167 {
178 'target_name': 'chromoting_host', 168 'target_name': 'chromoting_host',
179 'type': '<(library)', 169 'type': '<(library)',
180 'dependencies': [ 170 'dependencies': [
181 'chromoting_base', 171 'chromoting_base',
182 'chromoting_jingle_glue', 172 'chromoting_jingle_glue',
183 'chromoting_protocol', 173 'chromoting_protocol',
184 ], 174 ],
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 '../testing/gmock.gyp:gmock', 413 '../testing/gmock.gyp:gmock',
424 '../testing/gtest.gyp:gtest', 414 '../testing/gtest.gyp:gtest',
425 ], 415 ],
426 'include_dirs': [ 416 'include_dirs': [
427 '../testing/gmock/include', 417 '../testing/gmock/include',
428 ], 418 ],
429 'sources': [ 419 'sources': [
430 # BUG57351 'base/codec_test.cc', 420 # BUG57351 'base/codec_test.cc',
431 # BUG57351 'base/codec_test.h', 421 # BUG57351 'base/codec_test.h',
432 'base/compressor_zlib_unittest.cc', 422 'base/compressor_zlib_unittest.cc',
433 # BUG57351 'base/decoder_vp8_unittest.cc', 423 # BUG57374 'base/decoder_vp8_unittest.cc',
434 'base/decompressor_zlib_unittest.cc', 424 'base/decompressor_zlib_unittest.cc',
435 # BUG57351 'base/encode_decode_unittest.cc', 425 # BUG57351 'base/encode_decode_unittest.cc',
436 # BUG57351 'base/encoder_verbatim_unittest.cc', 426 # BUG57351 'base/encoder_verbatim_unittest.cc',
437 # BUG57351 'base/encoder_vp8_unittest.cc', 427 # BUG57374 'base/encoder_vp8_unittest.cc',
438 # BUG57351 'base/encoder_zlib_unittest.cc', 428 # BUG57351 'base/encoder_zlib_unittest.cc',
439 'base/mock_objects.h', 429 'base/mock_objects.h',
440 'base/multiple_array_input_stream_unittest.cc', 430 'base/multiple_array_input_stream_unittest.cc',
441 # BUG57351 'client/chromoting_view_unittest.cc', 431 # BUG57351 'client/chromoting_view_unittest.cc',
442 'client/mock_objects.h', 432 'client/mock_objects.h',
443 'host/access_verifier_unittest.cc', 433 'host/access_verifier_unittest.cc',
444 'host/chromoting_host_context_unittest.cc', 434 'host/chromoting_host_context_unittest.cc',
445 'host/client_connection_unittest.cc', 435 'host/client_connection_unittest.cc',
446 'host/differ_unittest.cc', 436 'host/differ_unittest.cc',
447 'host/differ_block_unittest.cc', 437 'host/differ_block_unittest.cc',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 ], # end of 'conditions' 489 ], # end of 'conditions'
500 }, # end of target 'chromoting_unittests' 490 }, # end of target 'chromoting_unittests'
501 ], # end of targets 491 ], # end of targets
502 } 492 }
503 493
504 # Local Variables: 494 # Local Variables:
505 # tab-width:2 495 # tab-width:2
506 # indent-tabs-mode:nil 496 # indent-tabs-mode:nil
507 # End: 497 # End:
508 # vim: set expandtab tabstop=2 shiftwidth=2: 498 # 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