OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 ], | 706 ], |
707 }], | 707 }], |
708 ['enable_webrtc==1 and (OS=="linux" or OS=="mac" or OS=="win")', { | 708 ['enable_webrtc==1 and (OS=="linux" or OS=="mac" or OS=="win")', { |
709 'sources': [ | 709 'sources': [ |
710 'browser/renderer_host/media/desktop_capture_device_unittest.cc', | 710 'browser/renderer_host/media/desktop_capture_device_unittest.cc', |
711 ], | 711 ], |
712 'dependencies': [ | 712 'dependencies': [ |
713 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | 713 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
714 ], | 714 ], |
715 }], | 715 }], |
| 716 ['enable_webrtc==1 and chromeos==1', { |
| 717 'sources': [ |
| 718 'browser/renderer_host/media/desktop_capture_device_ash_unittest.cc'
, |
| 719 ], |
| 720 }], |
716 # TODO(jrg): remove the OS=="android" section? | 721 # TODO(jrg): remove the OS=="android" section? |
717 # http://crbug.com/113172 | 722 # http://crbug.com/113172 |
718 # Understand better how media_stream_ is tied into Chromium. | 723 # Understand better how media_stream_ is tied into Chromium. |
719 ['enable_webrtc==0 and OS=="android"', { | 724 ['enable_webrtc==0 and OS=="android"', { |
720 'sources/': [ | 725 'sources/': [ |
721 ['exclude', '^renderer/media/media_stream_'], | 726 ['exclude', '^renderer/media/media_stream_'], |
722 ], | 727 ], |
723 }], | 728 }], |
724 ['input_speech==0', { | 729 ['input_speech==0', { |
725 'sources/': [ | 730 'sources/': [ |
(...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1633 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1638 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1634 }, | 1639 }, |
1635 ], | 1640 ], |
1636 }], | 1641 }], |
1637 ], | 1642 ], |
1638 }, | 1643 }, |
1639 ], | 1644 ], |
1640 }], | 1645 }], |
1641 ], | 1646 ], |
1642 } | 1647 } |
OLD | NEW |