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

Side by Side Diff: content/content_tests.gypi

Issue 15741003: Moving WebRTC logging related files from content to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 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/public/renderer/content_renderer_client.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) 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 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 'browser/webui/web_ui_data_source_unittest.cc', 361 'browser/webui/web_ui_data_source_unittest.cc',
362 'browser/webui/web_ui_message_handler_unittest.cc', 362 'browser/webui/web_ui_message_handler_unittest.cc',
363 'common/android/address_parser_unittest.cc', 363 'common/android/address_parser_unittest.cc',
364 'common/cc_messages_unittest.cc', 364 'common/cc_messages_unittest.cc',
365 'common/common_param_traits_unittest.cc', 365 'common/common_param_traits_unittest.cc',
366 'common/mac/attributed_string_coder_unittest.mm', 366 'common/mac/attributed_string_coder_unittest.mm',
367 'common/mac/font_descriptor_unittest.mm', 367 'common/mac/font_descriptor_unittest.mm',
368 'common/gpu/gpu_memory_manager_unittest.cc', 368 'common/gpu/gpu_memory_manager_unittest.cc',
369 'common/inter_process_time_ticks_converter_unittest.cc', 369 'common/inter_process_time_ticks_converter_unittest.cc',
370 'common/page_zoom_unittest.cc', 370 'common/page_zoom_unittest.cc',
371 'common/partial_circular_buffer_unittest.cc',
372 'common/resource_dispatcher_unittest.cc', 371 'common/resource_dispatcher_unittest.cc',
373 'common/sandbox_mac_diraccess_unittest.mm', 372 'common/sandbox_mac_diraccess_unittest.mm',
374 'common/sandbox_mac_fontloading_unittest.mm', 373 'common/sandbox_mac_fontloading_unittest.mm',
375 'common/sandbox_mac_system_access_unittest.mm', 374 'common/sandbox_mac_system_access_unittest.mm',
376 'common/sandbox_mac_unittest_helper.h', 375 'common/sandbox_mac_unittest_helper.h',
377 'common/sandbox_mac_unittest_helper.mm', 376 'common/sandbox_mac_unittest_helper.mm',
378 'common_child/indexed_db/indexed_db_dispatcher_unittest.cc', 377 'common_child/indexed_db/indexed_db_dispatcher_unittest.cc',
379 'common_child/indexed_db/proxy_webidbcursor_impl_unittest.cc', 378 'common_child/indexed_db/proxy_webidbcursor_impl_unittest.cc',
380 'renderer/active_notification_tracker_unittest.cc', 379 'renderer/active_notification_tracker_unittest.cc',
381 'renderer/android/email_detector_unittest.cc', 380 'renderer/android/email_detector_unittest.cc',
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc', 588 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc',
590 'browser/renderer_host/p2p/socket_host_udp_unittest.cc', 589 'browser/renderer_host/p2p/socket_host_udp_unittest.cc',
591 'renderer/media/media_stream_dependency_factory_unittest.cc', 590 'renderer/media/media_stream_dependency_factory_unittest.cc',
592 'renderer/media/media_stream_dispatcher_unittest.cc', 591 'renderer/media/media_stream_dispatcher_unittest.cc',
593 'renderer/media/media_stream_impl_unittest.cc', 592 'renderer/media/media_stream_impl_unittest.cc',
594 'renderer/media/rtc_peer_connection_handler_unittest.cc', 593 'renderer/media/rtc_peer_connection_handler_unittest.cc',
595 'renderer/media/video_destination_handler_unittest.cc', 594 'renderer/media/video_destination_handler_unittest.cc',
596 'renderer/media/video_source_handler_unittest.cc', 595 'renderer/media/video_source_handler_unittest.cc',
597 'renderer/media/webrtc_audio_device_unittest.cc', 596 'renderer/media/webrtc_audio_device_unittest.cc',
598 'renderer/media/webrtc_local_audio_track_unittest.cc', 597 'renderer/media/webrtc_local_audio_track_unittest.cc',
599 'renderer/media/webrtc_logging_handler_impl_unittest.cc',
600 ], 598 ],
601 'dependencies': [ 599 'dependencies': [
602 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 600 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
603 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 601 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
604 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 602 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
605 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine', 603 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine',
606 ] 604 ]
607 }], 605 }],
608 # TODO(jrg): remove the OS=="android" section? 606 # TODO(jrg): remove the OS=="android" section?
609 # http://crbug.com/113172 607 # http://crbug.com/113172
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 'resource_dir': 'shell/android/shell_apk/res', 1171 'resource_dir': 'shell/android/shell_apk/res',
1174 'additional_src_dirs': ['public/android/javatests/',], 1172 'additional_src_dirs': ['public/android/javatests/',],
1175 'is_test_apk': 1, 1173 'is_test_apk': 1,
1176 }, 1174 },
1177 'includes': [ '../build/java_apk.gypi' ], 1175 'includes': [ '../build/java_apk.gypi' ],
1178 }, 1176 },
1179 ], 1177 ],
1180 }], 1178 }],
1181 ], 1179 ],
1182 } 1180 }
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698