| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 '../base/base.gyp:base_i18n', | 441 '../base/base.gyp:base_i18n', |
| 442 '../base/base.gyp:test_support_base', | 442 '../base/base.gyp:test_support_base', |
| 443 '../gfx/gfx.gyp:gfx', | 443 '../gfx/gfx.gyp:gfx', |
| 444 '../testing/gmock.gyp:gmock', | 444 '../testing/gmock.gyp:gmock', |
| 445 '../testing/gtest.gyp:gtest', | 445 '../testing/gtest.gyp:gtest', |
| 446 ], | 446 ], |
| 447 'include_dirs': [ | 447 'include_dirs': [ |
| 448 '../testing/gmock/include', | 448 '../testing/gmock/include', |
| 449 ], | 449 ], |
| 450 'sources': [ | 450 'sources': [ |
| 451 # BUG57351 'base/codec_test.cc', | 451 'base/codec_test.cc', |
| 452 # BUG57351 'base/codec_test.h', | 452 'base/codec_test.h', |
| 453 'base/compound_buffer_unittest.cc', | 453 'base/compound_buffer_unittest.cc', |
| 454 'base/compressor_zlib_unittest.cc', | 454 'base/compressor_zlib_unittest.cc', |
| 455 # BUG57351 'base/decoder_vp8_unittest.cc', | 455 'base/decoder_vp8_unittest.cc', |
| 456 'base/decompressor_zlib_unittest.cc', | 456 'base/decompressor_zlib_unittest.cc', |
| 457 # BUG57351 'base/encode_decode_unittest.cc', | 457 'base/encode_decode_unittest.cc', |
| 458 # BUG57351 'base/encoder_vp8_unittest.cc', | 458 'base/encoder_vp8_unittest.cc', |
| 459 # BUG57351 'base/encoder_row_based_unittest.cc', | 459 'base/encoder_row_based_unittest.cc', |
| 460 'base/mock_objects.h', | 460 'base/mock_objects.h', |
| 461 # BUG57351 'client/chromoting_view_unittest.cc', | 461 # BUG57351 'client/chromoting_view_unittest.cc', |
| 462 'client/mock_objects.h', | 462 'client/mock_objects.h', |
| 463 'host/access_verifier_unittest.cc', | 463 'host/access_verifier_unittest.cc', |
| 464 'host/chromoting_host_context_unittest.cc', | 464 'host/chromoting_host_context_unittest.cc', |
| 465 'host/differ_unittest.cc', | 465 'host/differ_unittest.cc', |
| 466 'host/differ_block_unittest.cc', | 466 'host/differ_block_unittest.cc', |
| 467 'host/heartbeat_sender_unittest.cc', | 467 'host/heartbeat_sender_unittest.cc', |
| 468 'host/host_key_pair_unittest.cc', | 468 'host/host_key_pair_unittest.cc', |
| 469 'host/json_host_config_unittest.cc', | 469 'host/json_host_config_unittest.cc', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 ], | 512 ], |
| 513 }, | 513 }, |
| 514 ], | 514 ], |
| 515 ], | 515 ], |
| 516 }], | 516 }], |
| 517 ['OS=="mac"', { | 517 ['OS=="mac"', { |
| 518 'sources': [ | 518 'sources': [ |
| 519 'host/capturer_mac_unittest.cc', | 519 'host/capturer_mac_unittest.cc', |
| 520 ], | 520 ], |
| 521 }], | 521 }], |
| 522 ['target_arch=="arm"', { |
| 523 'sources!': [ |
| 524 'base/decoder_vp8_unittest.cc', |
| 525 'base/encoder_vp8_unittest.cc', |
| 526 ], |
| 527 }], |
| 522 ], # end of 'conditions' | 528 ], # end of 'conditions' |
| 523 }, # end of target 'chromoting_unittests' | 529 }, # end of target 'chromoting_unittests' |
| 524 ], # end of targets | 530 ], # end of targets |
| 525 } | 531 } |
| 526 | 532 |
| 527 # Local Variables: | 533 # Local Variables: |
| 528 # tab-width:2 | 534 # tab-width:2 |
| 529 # indent-tabs-mode:nil | 535 # indent-tabs-mode:nil |
| 530 # End: | 536 # End: |
| 531 # vim: set expandtab tabstop=2 shiftwidth=2: | 537 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |