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

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

Issue 1679323002: Cleanup of webrtc::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Drop return value from FakeWebRtcVideoCaptureModule::SendFrame. Created 4 years, 10 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
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 '-Wno-reorder', 52 '-Wno-reorder',
53 '-Wno-tautological-constant-out-of-range-compare', 53 '-Wno-tautological-constant-out-of-range-compare',
54 '-Wno-unused-private-field', 54 '-Wno-unused-private-field',
55 ], 55 ],
56 }, 56 },
57 }, 57 },
58 }], 58 }],
59 ], # conditions. 59 ], # conditions.
60 }, 60 },
61 { 61 {
62 'target_name': 'fake_video_frames', 62 'target_name': 'video_test_common',
63 'type': 'static_library', 63 'type': 'static_library',
64 'sources': [ 64 'sources': [
65 'fake_texture_frame.cc', 65 'fake_texture_frame.cc',
66 'fake_texture_frame.h', 66 'fake_texture_frame.h',
67 'frame_generator.cc', 67 'frame_generator.cc',
68 'frame_generator.h', 68 'frame_generator.h',
69 'frame_utils.cc',
70 'frame_utils.h',
69 ], 71 ],
70 'dependencies': [ 72 'dependencies': [
71 '<(webrtc_root)/common_video/common_video.gyp:common_video', 73 '<(webrtc_root)/common_video/common_video.gyp:common_video',
72 ], 74 ],
73 }, 75 },
74 { 76 {
75 'target_name': 'rtp_test_utils', 77 'target_name': 'rtp_test_utils',
76 'type': 'static_library', 78 'type': 'static_library',
77 'sources': [ 79 'sources': [
78 'rtcp_packet_parser.cc', 80 'rtcp_packet_parser.cc',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 '../build/isolate.gypi', 262 '../build/isolate.gypi',
261 ], 263 ],
262 'sources': [ 264 'sources': [
263 'test_support_unittests.isolate', 265 'test_support_unittests.isolate',
264 ], 266 ],
265 }, 267 },
266 ], 268 ],
267 }], 269 }],
268 ], 270 ],
269 } 271 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698