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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 '../base/base.gyp:base', | 335 '../base/base.gyp:base', |
336 '../base/base.gyp:base_i18n', | 336 '../base/base.gyp:base_i18n', |
337 '../gfx/gfx.gyp:gfx', | 337 '../gfx/gfx.gyp:gfx', |
338 '../testing/gmock.gyp:gmock', | 338 '../testing/gmock.gyp:gmock', |
339 '../testing/gtest.gyp:gtest', | 339 '../testing/gtest.gyp:gtest', |
340 ], | 340 ], |
341 'include_dirs': [ | 341 'include_dirs': [ |
342 '../testing/gmock/include', | 342 '../testing/gmock/include', |
343 ], | 343 ], |
344 'sources': [ | 344 'sources': [ |
| 345 'base/codec_test.cc', |
| 346 'base/codec_test.h', |
345 'base/compressor_zlib_unittest.cc', | 347 'base/compressor_zlib_unittest.cc', |
346 'base/decoder_verbatim_unittest.cc', | 348 'base/decoder_verbatim_unittest.cc', |
347 'base/decompressor_zlib_unittest.cc', | 349 'base/decompressor_zlib_unittest.cc', |
| 350 'base/encoder_verbatim_unittest.cc', |
348 # TODO(hclam): Enable VP8 in the build. | 351 # TODO(hclam): Enable VP8 in the build. |
349 #'base/encoder_vp8_unittest.cc', | 352 #'base/encoder_vp8_unittest.cc', |
350 'base/mock_objects.h', | 353 'base/mock_objects.h', |
351 'base/multiple_array_input_stream_unittest.cc', | 354 'base/multiple_array_input_stream_unittest.cc', |
352 'base/protocol_decoder_unittest.cc', | 355 'base/protocol_decoder_unittest.cc', |
353 'client/mock_objects.h', | 356 'client/mock_objects.h', |
354 'host/chromoting_host_context_unittest.cc', | 357 'host/chromoting_host_context_unittest.cc', |
355 'host/client_connection_unittest.cc', | 358 'host/client_connection_unittest.cc', |
356 'host/differ_unittest.cc', | 359 'host/differ_unittest.cc', |
357 'host/differ_block_unittest.cc', | 360 'host/differ_block_unittest.cc', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 ], # end of 'conditions' | 393 ], # end of 'conditions' |
391 }, # end of target 'chromoting_unittests' | 394 }, # end of target 'chromoting_unittests' |
392 ], # end of targets | 395 ], # end of targets |
393 } | 396 } |
394 | 397 |
395 # Local Variables: | 398 # Local Variables: |
396 # tab-width:2 | 399 # tab-width:2 |
397 # indent-tabs-mode:nil | 400 # indent-tabs-mode:nil |
398 # End: | 401 # End: |
399 # vim: set expandtab tabstop=2 shiftwidth=2: | 402 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |