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

Side by Side Diff: webrtc/test/test.gyp

Issue 2021243002: GN: Add test_support_unittests target (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | no next file » | 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 WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # TODO(andrew): consider moving test_support to src/base/test. 9 # TODO(andrew): consider moving test_support to src/base/test.
10 { 10 {
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 'frame_generator_capturer.cc', 261 'frame_generator_capturer.cc',
262 'frame_generator_capturer.h', 262 'frame_generator_capturer.h',
263 'layer_filtering_transport.cc', 263 'layer_filtering_transport.cc',
264 'layer_filtering_transport.h', 264 'layer_filtering_transport.h',
265 'mock_transport.h', 265 'mock_transport.h',
266 'mock_voe_channel_proxy.h', 266 'mock_voe_channel_proxy.h',
267 'mock_voice_engine.h', 267 'mock_voice_engine.h',
268 'null_transport.cc', 268 'null_transport.cc',
269 'null_transport.h', 269 'null_transport.h',
270 'rtp_rtcp_observer.h', 270 'rtp_rtcp_observer.h',
271 'run_loop.cc',
272 'run_loop.h',
273 'statistics.cc', 271 'statistics.cc',
274 'statistics.h', 272 'statistics.h',
275 'vcm_capturer.cc', 273 'vcm_capturer.cc',
276 'vcm_capturer.h', 274 'vcm_capturer.h',
277 'video_capturer.cc', 275 'video_capturer.cc',
278 'video_capturer.h', 276 'video_capturer.h',
279 'win/run_loop_win.cc', 277 'win/run_loop_win.cc',
280 ], 278 ],
281 'conditions': [ 279 'conditions': [
282 ['OS=="win"', { 280 ['OS!="win"', {
kjellander_webrtc 2016/05/31 11:05:27 The changes in this file are just to eliminate sou
283 'sources!': [ 281 'sources': [
284 'run_loop.cc', 282 'run_loop.h',
283 'run_loop.cc',
285 ], 284 ],
286 }], 285 }],
287 ], 286 ],
288 'dependencies': [ 287 'dependencies': [
289 '<(DEPTH)/testing/gmock.gyp:gmock', 288 '<(DEPTH)/testing/gmock.gyp:gmock',
290 '<(DEPTH)/testing/gtest.gyp:gtest', 289 '<(DEPTH)/testing/gtest.gyp:gtest',
291 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 290 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
292 '<(webrtc_root)/base/base.gyp:rtc_base_approved', 291 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
293 '<(webrtc_root)/common.gyp:webrtc_common', 292 '<(webrtc_root)/common.gyp:webrtc_common',
294 '<(webrtc_root)/modules/modules.gyp:media_file', 293 '<(webrtc_root)/modules/modules.gyp:media_file',
295 '<(webrtc_root)/webrtc.gyp:webrtc', 294 '<(webrtc_root)/webrtc.gyp:webrtc',
296 'rtp_test_utils', 295 'rtp_test_utils',
297 'test_support', 296 'test_support',
298 'video_test_common', 297 'video_test_common',
299 ], 298 ],
300 }, 299 },
301 { 300 {
302 'target_name': 'test_renderer', 301 'target_name': 'test_renderer',
303 'type': 'static_library', 302 'type': 'static_library',
304 'sources': [ 303 'sources': [
305 'gl/gl_renderer.cc',
306 'gl/gl_renderer.h',
307 'linux/glx_renderer.cc', 304 'linux/glx_renderer.cc',
308 'linux/glx_renderer.h', 305 'linux/glx_renderer.h',
309 'linux/video_renderer_linux.cc', 306 'linux/video_renderer_linux.cc',
310 'mac/video_renderer_mac.h', 307 'mac/video_renderer_mac.h',
311 'mac/video_renderer_mac.mm', 308 'mac/video_renderer_mac.mm',
312 'null_platform_renderer.cc',
313 'video_renderer.cc', 309 'video_renderer.cc',
314 'video_renderer.h', 310 'video_renderer.h',
315 'win/d3d_renderer.cc', 311 'win/d3d_renderer.cc',
316 'win/d3d_renderer.h', 312 'win/d3d_renderer.h',
317 ], 313 ],
318 'conditions': [ 314 'conditions': [
319 ['OS=="linux"', { 315 ['OS!="linux" and OS!="mac" and OS!="win"', {
320 'sources!': [ 316 'sources': [
321 'null_platform_renderer.cc', 317 'null_platform_renderer.cc',
322 ], 318 ],
323 }], 319 }],
324 ['OS=="mac"', { 320 ['OS=="linux" or OS=="mac"', {
325 'sources!': [ 321 'sources' : [
326 'null_platform_renderer.cc',
327 ],
328 }],
329 ['OS!="linux" and OS!="mac"', {
330 'sources!' : [
331 'gl/gl_renderer.cc', 322 'gl/gl_renderer.cc',
332 'gl/gl_renderer.h', 323 'gl/gl_renderer.h',
333 ], 324 ],
334 }], 325 }],
335 ['OS=="win"', { 326 ['OS=="win"', {
336 'sources!': [
337 'null_platform_renderer.cc',
338 ],
339 'include_dirs': [ 327 'include_dirs': [
340 '<(directx_sdk_path)/Include', 328 '<(directx_sdk_path)/Include',
341 ], 329 ],
342 }], 330 }],
343 ['OS=="win" and clang==1', { 331 ['OS=="win" and clang==1', {
344 'msvs_settings': { 332 'msvs_settings': {
345 'VCCLCompilerTool': { 333 'VCCLCompilerTool': {
346 'AdditionalOptions': [ 334 'AdditionalOptions': [
347 # Disable warnings failing when compiling with Clang on Windows. 335 # Disable warnings failing when compiling with Clang on Windows.
348 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 336 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 '../build/isolate.gypi', 420 '../build/isolate.gypi',
433 ], 421 ],
434 'sources': [ 422 'sources': [
435 'test_support_unittests.isolate', 423 'test_support_unittests.isolate',
436 ], 424 ],
437 }, 425 },
438 ], 426 ],
439 }], 427 }],
440 ], 428 ],
441 } 429 }
OLDNEW
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698