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

Side by Side Diff: content/content_tests.gypi

Issue 11428136: Added a basic WebRTC peerconnection browser test with video verification. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged peerconnection and getusermedia tests, fixed comments. Created 8 years 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
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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 }], 788 }],
789 ['target_arch!="arm"', { 789 ['target_arch!="arm"', {
790 'dependencies': [ 790 'dependencies': [
791 # Runtime dependencies 791 # Runtime dependencies
792 '../webkit/webkit.gyp:copy_npapi_test_plugin', 792 '../webkit/webkit.gyp:copy_npapi_test_plugin',
793 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', 793 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn',
794 ], 794 ],
795 }], 795 }],
796 ['enable_webrtc==1', { 796 ['enable_webrtc==1', {
797 'sources': [ 797 'sources': [
798 'browser/webrtc_getusermedia_browsertest.cc', 798 'browser/webrtc_browsertest.cc',
799 ], 799 ],
800 }], 800 }],
801 ], 801 ],
802 }, 802 },
803 ], 803 ],
804 }], 804 }],
805 ['chromeos==1 or OS=="win" or OS=="mac"', { 805 ['chromeos==1 or OS=="win" or OS=="mac"', {
806 'targets': [ 806 'targets': [
807 { 807 {
808 'target_name': 'video_decode_accelerator_unittest', 808 'target_name': 'video_decode_accelerator_unittest',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 'resource_dir': '../res', 937 'resource_dir': '../res',
938 'additional_src_dirs': ['../content/public/android/javatests/'], 938 'additional_src_dirs': ['../content/public/android/javatests/'],
939 'is_test_apk': 1, 939 'is_test_apk': 1,
940 }, 940 },
941 'includes': [ '../build/java_apk.gypi' ], 941 'includes': [ '../build/java_apk.gypi' ],
942 }, 942 },
943 ], 943 ],
944 }], 944 }],
945 ], 945 ],
946 } 946 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698