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

Side by Side Diff: content/content_tests.gypi

Issue 8427031: First unit tests for WebRTCAudioDevice. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | « no previous file | content/renderer/media/webrtc_audio_device_unittest.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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'],
11 'dependencies': [ 11 'dependencies': [
12 '../build/temp_gyp/googleurl.gyp:googleurl', 12 '../build/temp_gyp/googleurl.gyp:googleurl',
13 'content_common', 13 'content_common',
14 '../skia/skia.gyp:skia', 14 '../skia/skia.gyp:skia',
15 '../testing/gmock.gyp:gmock', 15 '../testing/gmock.gyp:gmock',
16 '../testing/gtest.gyp:gtest', 16 '../testing/gtest.gyp:gtest',
17 '../third_party/libvpx/libvpx.gyp:libvpx',
17 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 18 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
19 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
20 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers',
21 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core',
22 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core',
18 '../ui/gfx/compositor/compositor.gyp:test_compositor', 23 '../ui/gfx/compositor/compositor.gyp:test_compositor',
19 '../ui/gfx/surface/surface.gyp:surface', 24 '../ui/gfx/surface/surface.gyp:surface',
20 '../ui/ui.gyp:ui_test_support', 25 '../ui/ui.gyp:ui_test_support',
21 '../webkit/support/webkit_support.gyp:appcache', 26 '../webkit/support/webkit_support.gyp:appcache',
22 ], 27 ],
23 'include_dirs': [ 28 'include_dirs': [
24 '..', 29 '..',
25 ], 30 ],
26 'sources': [ 31 'sources': [
27 # TODO(phajdan.jr): All of those files should live in content/test. 32 # TODO(phajdan.jr): All of those files should live in content/test.
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'test/test_content_client.cc', 87 'test/test_content_client.cc',
83 'test/test_content_client.h', 88 'test/test_content_client.h',
84 'test/test_notification_tracker.cc', 89 'test/test_notification_tracker.cc',
85 'test/test_notification_tracker.h', 90 'test/test_notification_tracker.h',
86 'test/test_tab_contents_view.cc', 91 'test/test_tab_contents_view.cc',
87 'test/test_tab_contents_view.h', 92 'test/test_tab_contents_view.h',
88 'test/test_url_fetcher_factory.cc', 93 'test/test_url_fetcher_factory.cc',
89 'test/test_url_fetcher_factory.h', 94 'test/test_url_fetcher_factory.h',
90 'test/unittest_test_suite.cc', 95 'test/unittest_test_suite.cc',
91 'test/unittest_test_suite.h', 96 'test/unittest_test_suite.h',
97 'test/webrtc_audio_device_test.cc',
98 'test/webrtc_audio_device_test.h',
92 99
93 # TODO(phajdan.jr): Those files should be moved to webkit 100 # TODO(phajdan.jr): Those files should be moved to webkit
94 # test support target. 101 # test support target.
95 '../webkit/appcache/appcache_test_helper.cc', 102 '../webkit/appcache/appcache_test_helper.cc',
96 '../webkit/appcache/appcache_test_helper.h', 103 '../webkit/appcache/appcache_test_helper.h',
97 '../webkit/quota/mock_special_storage_policy.cc', 104 '../webkit/quota/mock_special_storage_policy.cc',
98 '../webkit/quota/mock_special_storage_policy.h', 105 '../webkit/quota/mock_special_storage_policy.h',
99 ], 106 ],
100 'conditions': [ 107 'conditions': [
101 ['toolkit_uses_gtk == 1', { 108 ['toolkit_uses_gtk == 1', {
(...skipping 18 matching lines...) Expand all
120 '../crypto/crypto.gyp:crypto', 127 '../crypto/crypto.gyp:crypto',
121 '../gpu/gpu.gyp:gpu_unittest_utils', 128 '../gpu/gpu.gyp:gpu_unittest_utils',
122 '../ipc/ipc.gyp:test_support_ipc', 129 '../ipc/ipc.gyp:test_support_ipc',
123 '../media/media.gyp:media_test_support', 130 '../media/media.gyp:media_test_support',
124 '../net/net.gyp:net_test_support', 131 '../net/net.gyp:net_test_support',
125 '../skia/skia.gyp:skia', 132 '../skia/skia.gyp:skia',
126 '../testing/gmock.gyp:gmock', 133 '../testing/gmock.gyp:gmock',
127 '../testing/gtest.gyp:gtest', 134 '../testing/gtest.gyp:gtest',
128 '../third_party/libjingle/libjingle.gyp:libjingle', 135 '../third_party/libjingle/libjingle.gyp:libjingle',
129 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', 136 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
137 '../third_party/libvpx/libvpx.gyp:libvpx',
130 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 138 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
139 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
140 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers',
141 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core',
142 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core',
131 '../ui/gfx/gl/gl.gyp:gl', 143 '../ui/gfx/gl/gl.gyp:gl',
132 '../ui/ui.gyp:ui', 144 '../ui/ui.gyp:ui',
133 '../webkit/support/webkit_support.gyp:database', 145 '../webkit/support/webkit_support.gyp:database',
134 '../webkit/support/webkit_support.gyp:glue', 146 '../webkit/support/webkit_support.gyp:glue',
135 '../webkit/support/webkit_support.gyp:quota', 147 '../webkit/support/webkit_support.gyp:quota',
136 ], 148 ],
137 'include_dirs': [ 149 'include_dirs': [
138 '..', 150 '..',
139 ], 151 ],
140 'sources': [ 152 'sources': [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'gpu/gpu_info_collector_unittest_win.cc', 217 'gpu/gpu_info_collector_unittest_win.cc',
206 'renderer/active_notification_tracker_unittest.cc', 218 'renderer/active_notification_tracker_unittest.cc',
207 'renderer/gpu/input_event_filter_unittest.cc', 219 'renderer/gpu/input_event_filter_unittest.cc',
208 'renderer/media/audio_message_filter_unittest.cc', 220 'renderer/media/audio_message_filter_unittest.cc',
209 'renderer/media/audio_renderer_impl_unittest.cc', 221 'renderer/media/audio_renderer_impl_unittest.cc',
210 'renderer/media/capture_video_decoder_unittest.cc', 222 'renderer/media/capture_video_decoder_unittest.cc',
211 'renderer/media/media_stream_dispatcher_unittest.cc', 223 'renderer/media/media_stream_dispatcher_unittest.cc',
212 'renderer/media/rtc_video_decoder_unittest.cc', 224 'renderer/media/rtc_video_decoder_unittest.cc',
213 'renderer/media/video_capture_impl_unittest.cc', 225 'renderer/media/video_capture_impl_unittest.cc',
214 'renderer/media/video_capture_message_filter_unittest.cc', 226 'renderer/media/video_capture_message_filter_unittest.cc',
227 'renderer/media/webrtc_audio_device_unittest.cc',
215 'renderer/paint_aggregator_unittest.cc', 228 'renderer/paint_aggregator_unittest.cc',
216 'renderer/v8_value_converter_impl_unittest.cc', 229 'renderer/v8_value_converter_impl_unittest.cc',
217 'test/run_all_unittests.cc', 230 'test/run_all_unittests.cc',
218 ], 231 ],
219 'conditions': [ 232 'conditions': [
220 ['input_speech==0', { 233 ['input_speech==0', {
221 'sources/': [ 234 'sources/': [
222 ['exclude', '^browser/speech/'], 235 ['exclude', '^browser/speech/'],
223 ] 236 ]
224 }], 237 }],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 ], 370 ],
358 'sources': [ 371 'sources': [
359 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', 372 'common/gpu/media/omx_video_decode_accelerator_unittest.cc',
360 ], 373 ],
361 } 374 }
362 ], 375 ],
363 }, 376 },
364 ], 377 ],
365 ], 378 ],
366 } 379 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/webrtc_audio_device_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698