OLD | NEW |
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 Loading... |
131 'sources': [ | 131 'sources': [ |
132 'base/capture_data.h', | 132 'base/capture_data.h', |
133 'base/compressor.h', | 133 'base/compressor.h', |
134 'base/compressor_zlib.cc', | 134 'base/compressor_zlib.cc', |
135 'base/compressor_zlib.h', | 135 'base/compressor_zlib.h', |
136 'base/constants.cc', | 136 'base/constants.cc', |
137 'base/constants.h', | 137 'base/constants.h', |
138 'base/decoder.h', | 138 'base/decoder.h', |
139 'base/decoder_verbatim.cc', | 139 'base/decoder_verbatim.cc', |
140 'base/decoder_verbatim.h', | 140 'base/decoder_verbatim.h', |
| 141 'base/decoder_zlib.cc', |
| 142 'base/decoder_zlib.h', |
141 'base/decompressor.h', | 143 'base/decompressor.h', |
142 'base/decompressor_zlib.cc', | 144 'base/decompressor_zlib.cc', |
143 'base/decompressor_zlib.h', | 145 'base/decompressor_zlib.h', |
144 'base/encoder.h', | 146 'base/encoder.h', |
145 'base/encoder_verbatim.cc', | 147 'base/encoder_verbatim.cc', |
146 'base/encoder_verbatim.h', | 148 'base/encoder_verbatim.h', |
| 149 'base/encoder_zlib.cc', |
| 150 'base/encoder_zlib.h', |
147 # TODO(hclam): Enable VP8 in the build. | 151 # TODO(hclam): Enable VP8 in the build. |
148 #'base/encoder_vp8.cc', | 152 #'base/encoder_vp8.cc', |
149 #'base/encoder_vp8.h', | 153 #'base/encoder_vp8.h', |
150 'base/multiple_array_input_stream.cc', | 154 'base/multiple_array_input_stream.cc', |
151 'base/multiple_array_input_stream.h', | 155 'base/multiple_array_input_stream.h', |
152 'base/protocol_decoder.cc', | 156 'base/protocol_decoder.cc', |
153 'base/protocol_decoder.h', | 157 'base/protocol_decoder.h', |
154 'base/protocol_util.cc', | 158 'base/protocol_util.cc', |
155 'base/protocol_util.h', | 159 'base/protocol_util.h', |
156 ], | 160 ], |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 '../testing/gtest.gyp:gtest', | 343 '../testing/gtest.gyp:gtest', |
340 ], | 344 ], |
341 'include_dirs': [ | 345 'include_dirs': [ |
342 '../testing/gmock/include', | 346 '../testing/gmock/include', |
343 ], | 347 ], |
344 'sources': [ | 348 'sources': [ |
345 'base/codec_test.cc', | 349 'base/codec_test.cc', |
346 'base/codec_test.h', | 350 'base/codec_test.h', |
347 'base/compressor_zlib_unittest.cc', | 351 'base/compressor_zlib_unittest.cc', |
348 'base/decoder_verbatim_unittest.cc', | 352 'base/decoder_verbatim_unittest.cc', |
| 353 'base/decoder_zlib_unittest.cc', |
349 'base/decompressor_zlib_unittest.cc', | 354 'base/decompressor_zlib_unittest.cc', |
350 'base/encoder_verbatim_unittest.cc', | 355 'base/encoder_verbatim_unittest.cc', |
351 # TODO(hclam): Enable VP8 in the build. | 356 # TODO(hclam): Enable VP8 in the build. |
352 #'base/encoder_vp8_unittest.cc', | 357 #'base/encoder_vp8_unittest.cc', |
| 358 'base/encoder_zlib_unittest.cc', |
353 'base/mock_objects.h', | 359 'base/mock_objects.h', |
354 'base/multiple_array_input_stream_unittest.cc', | 360 'base/multiple_array_input_stream_unittest.cc', |
355 'base/protocol_decoder_unittest.cc', | 361 'base/protocol_decoder_unittest.cc', |
356 'client/mock_objects.h', | 362 'client/mock_objects.h', |
357 'host/chromoting_host_context_unittest.cc', | 363 'host/chromoting_host_context_unittest.cc', |
358 'host/client_connection_unittest.cc', | 364 'host/client_connection_unittest.cc', |
359 'host/differ_unittest.cc', | 365 'host/differ_unittest.cc', |
360 'host/differ_block_unittest.cc', | 366 'host/differ_block_unittest.cc', |
361 'host/json_host_config_unittest.cc', | 367 'host/json_host_config_unittest.cc', |
362 'host/mock_objects.h', | 368 'host/mock_objects.h', |
(...skipping 30 matching lines...) Expand all Loading... |
393 ], # end of 'conditions' | 399 ], # end of 'conditions' |
394 }, # end of target 'chromoting_unittests' | 400 }, # end of target 'chromoting_unittests' |
395 ], # end of targets | 401 ], # end of targets |
396 } | 402 } |
397 | 403 |
398 # Local Variables: | 404 # Local Variables: |
399 # tab-width:2 | 405 # tab-width:2 |
400 # indent-tabs-mode:nil | 406 # indent-tabs-mode:nil |
401 # End: | 407 # End: |
402 # vim: set expandtab tabstop=2 shiftwidth=2: | 408 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |