| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 }], | 526 }], |
| 527 ['enable_plugins==0', { | 527 ['enable_plugins==0', { |
| 528 'sources/': [ | 528 'sources/': [ |
| 529 ['exclude', '^renderer/pepper/'], | 529 ['exclude', '^renderer/pepper/'], |
| 530 ['exclude', '^browser/renderer_host/pepper/'], | 530 ['exclude', '^browser/renderer_host/pepper/'], |
| 531 ], | 531 ], |
| 532 'sources!': [ | 532 'sources!': [ |
| 533 'browser/plugin_loader_posix_unittest.cc', | 533 'browser/plugin_loader_posix_unittest.cc', |
| 534 ], | 534 ], |
| 535 }], | 535 }], |
| 536 ['(OS=="win" or OS=="mac" or OS=="linux") and enable_webrtc==1', { |
| 537 'sources': [ |
| 538 'browser/renderer_host/media/screen_capturer_unittest.cc', |
| 539 ], |
| 540 }], |
| 536 ['enable_webrtc==1', { | 541 ['enable_webrtc==1', { |
| 537 'sources': [ | 542 'sources': [ |
| 538 'browser/media/webrtc_internals_unittest.cc', | 543 'browser/media/webrtc_internals_unittest.cc', |
| 539 'browser/renderer_host/p2p/socket_host_test_utils.h', | 544 'browser/renderer_host/p2p/socket_host_test_utils.h', |
| 540 'browser/renderer_host/p2p/socket_host_tcp_unittest.cc', | 545 'browser/renderer_host/p2p/socket_host_tcp_unittest.cc', |
| 541 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc', | 546 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc', |
| 542 'browser/renderer_host/p2p/socket_host_udp_unittest.cc', | 547 'browser/renderer_host/p2p/socket_host_udp_unittest.cc', |
| 543 'renderer/media/media_stream_dependency_factory_unittest.cc', | 548 'renderer/media/media_stream_dependency_factory_unittest.cc', |
| 544 'renderer/media/media_stream_dispatcher_unittest.cc', | 549 'renderer/media/media_stream_dispatcher_unittest.cc', |
| 545 'renderer/media/media_stream_impl_unittest.cc', | 550 'renderer/media/media_stream_impl_unittest.cc', |
| 546 'renderer/media/rtc_peer_connection_handler_unittest.cc', | 551 'renderer/media/rtc_peer_connection_handler_unittest.cc', |
| 547 'renderer/media/rtc_video_decoder_unittest.cc', | 552 'renderer/media/rtc_video_decoder_unittest.cc', |
| 548 'renderer/media/webrtc_audio_device_unittest.cc', | 553 'renderer/media/webrtc_audio_device_unittest.cc', |
| 549 ], | 554 ], |
| 550 'dependencies': [ | 555 'dependencies': [ |
| 556 '../remoting/remoting.gyp:remoting_screen_capturer', |
| 551 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', | 557 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', |
| 552 '../third_party/webrtc/modules/modules.gyp:video_capture_module', | 558 '../third_party/webrtc/modules/modules.gyp:video_capture_module', |
| 553 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy
stem_wrappers', | 559 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy
stem_wrappers', |
| 554 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co
re', | 560 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co
re', |
| 555 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co
re', | 561 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co
re', |
| 556 ] | 562 ] |
| 557 }], | 563 }], |
| 558 # TODO(jrg): remove the OS=="android" section? | 564 # TODO(jrg): remove the OS=="android" section? |
| 559 # http://crbug.com/113172 | 565 # http://crbug.com/113172 |
| 560 # Understand better how media_stream_ is tied into Chromium. | 566 # Understand better how media_stream_ is tied into Chromium. |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 'resource_dir': '../res', | 1006 'resource_dir': '../res', |
| 1001 'additional_src_dirs': ['../content/public/android/javatests/'], | 1007 'additional_src_dirs': ['../content/public/android/javatests/'], |
| 1002 'is_test_apk': 1, | 1008 'is_test_apk': 1, |
| 1003 }, | 1009 }, |
| 1004 'includes': [ '../build/java_apk.gypi' ], | 1010 'includes': [ '../build/java_apk.gypi' ], |
| 1005 }, | 1011 }, |
| 1006 ], | 1012 ], |
| 1007 }], | 1013 }], |
| 1008 ], | 1014 ], |
| 1009 } | 1015 } |
| OLD | NEW |