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

Side by Side Diff: content/content_tests.gypi

Issue 101063003: Add browser test for AEC dump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added another test. Code changes to avoid race. Allow enable dump after PCF creation. Created 7 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) 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 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 }], 1107 }],
1108 ['OS!="android" and OS!="ios"', { 1108 ['OS!="android" and OS!="ios"', {
1109 # npapi test plugin doesn't build on android or ios 1109 # npapi test plugin doesn't build on android or ios
1110 'dependencies': [ 1110 'dependencies': [
1111 # Runtime dependencies 1111 # Runtime dependencies
1112 'copy_npapi_test_plugin', 1112 'copy_npapi_test_plugin',
1113 ], 1113 ],
1114 }], 1114 }],
1115 ['enable_webrtc==1', { 1115 ['enable_webrtc==1', {
1116 'sources': [ 1116 'sources': [
1117 'browser/media/webrtc_aecdump_browsertest.cc',
1117 'browser/media/webrtc_browsertest.cc', 1118 'browser/media/webrtc_browsertest.cc',
1118 ], 1119 ],
1119 'dependencies': [ 1120 'dependencies': [
1120 '../testing/perf/perf_test.gyp:perf_test', 1121 '../testing/perf/perf_test.gyp:perf_test',
1121 ], 1122 ],
1122 }], 1123 }],
1123 ['enable_plugins==0', { 1124 ['enable_plugins==0', {
1124 'sources/': [ 1125 'sources/': [
1125 ['exclude', '^renderer/pepper/'], 1126 ['exclude', '^renderer/pepper/'],
1126 ], 1127 ],
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1635 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1635 }, 1636 },
1636 ], 1637 ],
1637 }], 1638 }],
1638 ], 1639 ],
1639 }, 1640 },
1640 ], 1641 ],
1641 }], 1642 }],
1642 ], 1643 ],
1643 } 1644 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698