Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: content/content_tests.gypi

Issue 10703095: New PeerConnection handler in Chrome to support latest PeerConnection draft (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Readd the UMA histogram for Deprecated PeerConnection to not screw up the stats. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/media/media_stream_dependency_factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 ['enable_webrtc==1', { 176 ['enable_webrtc==1', {
177 'sources': [ 177 'sources': [
178 'renderer/media/mock_media_stream_dependency_factory.cc', 178 'renderer/media/mock_media_stream_dependency_factory.cc',
179 'renderer/media/mock_media_stream_dependency_factory.h', 179 'renderer/media/mock_media_stream_dependency_factory.h',
180 'renderer/media/mock_media_stream_dispatcher.cc', 180 'renderer/media/mock_media_stream_dispatcher.cc',
181 'renderer/media/mock_media_stream_dispatcher.h', 181 'renderer/media/mock_media_stream_dispatcher.h',
182 'renderer/media/mock_peer_connection_impl.cc', 182 'renderer/media/mock_peer_connection_impl.cc',
183 'renderer/media/mock_peer_connection_impl.h', 183 'renderer/media/mock_peer_connection_impl.h',
184 'renderer/media/mock_web_peer_connection_00_handler_client.cc', 184 'renderer/media/mock_web_peer_connection_00_handler_client.cc',
185 'renderer/media/mock_web_peer_connection_00_handler_client.h', 185 'renderer/media/mock_web_peer_connection_00_handler_client.h',
186 'renderer/media/mock_web_peer_connection_handler_client.cc', 186 'renderer/media/mock_web_rtc_peer_connection_handler_client.cc',
187 'renderer/media/mock_web_peer_connection_handler_client.h', 187 'renderer/media/mock_web_rtc_peer_connection_handler_client.h',
188 'test/webrtc_audio_device_test.cc', 188 'test/webrtc_audio_device_test.cc',
189 'test/webrtc_audio_device_test.h', 189 'test/webrtc_audio_device_test.h',
190 ], 190 ],
191 'dependencies': [ 191 'dependencies': [
192 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', 192 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
193 '../third_party/webrtc/modules/modules.gyp:audio_device', 193 '../third_party/webrtc/modules/modules.gyp:audio_device',
194 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 194 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
195 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy stem_wrappers', 195 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy stem_wrappers',
196 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co re', 196 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co re',
197 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co re'], 197 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co re'],
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 ['enable_webrtc==1', { 500 ['enable_webrtc==1', {
501 'sources': [ 501 'sources': [
502 'browser/renderer_host/p2p/socket_host_test_utils.h', 502 'browser/renderer_host/p2p/socket_host_test_utils.h',
503 'browser/renderer_host/p2p/socket_host_tcp_unittest.cc', 503 'browser/renderer_host/p2p/socket_host_tcp_unittest.cc',
504 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc', 504 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc',
505 'browser/renderer_host/p2p/socket_host_udp_unittest.cc', 505 'browser/renderer_host/p2p/socket_host_udp_unittest.cc',
506 'renderer/media/media_stream_dependency_factory_unittest.cc', 506 'renderer/media/media_stream_dependency_factory_unittest.cc',
507 'renderer/media/media_stream_dispatcher_unittest.cc', 507 'renderer/media/media_stream_dispatcher_unittest.cc',
508 'renderer/media/media_stream_impl_unittest.cc', 508 'renderer/media/media_stream_impl_unittest.cc',
509 'renderer/media/peer_connection_handler_jsep_unittest.cc', 509 'renderer/media/peer_connection_handler_jsep_unittest.cc',
510 'renderer/media/rtc_peer_connection_handler_unittest.cc',
510 'renderer/media/rtc_video_decoder_unittest.cc', 511 'renderer/media/rtc_video_decoder_unittest.cc',
511 'renderer/media/webrtc_audio_device_unittest.cc', 512 'renderer/media/webrtc_audio_device_unittest.cc',
512 ], 513 ],
513 'dependencies': [ 514 'dependencies': [
514 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', 515 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
515 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 516 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
516 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy stem_wrappers', 517 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy stem_wrappers',
517 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co re', 518 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co re',
518 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co re', 519 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co re',
519 ] 520 ]
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 '-buildfile', 909 '-buildfile',
909 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 910 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
910 ] 911 ]
911 } 912 }
912 ], 913 ],
913 }, 914 },
914 ], 915 ],
915 }], 916 }],
916 ], 917 ],
917 } 918 }
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/media/media_stream_dependency_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698