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

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

Issue 1554223002: Move fake-handle frame creation into test target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: add file Created 4 years, 11 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': 'frame_generator', 62 'target_name': 'fake_video_frames',
63 'type': 'static_library', 63 'type': 'static_library',
64 'sources': [ 64 'sources': [
65 'fake_texture_frame.cc',
66 'fake_texture_frame.h',
65 'frame_generator.cc', 67 'frame_generator.cc',
66 'frame_generator.h', 68 'frame_generator.h',
67 ], 69 ],
68 'dependencies': [ 70 'dependencies': [
69 '<(webrtc_root)/common_video/common_video.gyp:common_video', 71 '<(webrtc_root)/common_video/common_video.gyp:common_video',
70 ], 72 ],
71 }, 73 },
72 { 74 {
73 'target_name': 'rtp_test_utils', 75 'target_name': 'rtp_test_utils',
74 'type': 'static_library', 76 'type': 'static_library',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 '../build/isolate.gypi', 260 '../build/isolate.gypi',
259 ], 261 ],
260 'sources': [ 262 'sources': [
261 'test_support_unittests.isolate', 263 'test_support_unittests.isolate',
262 ], 264 ],
263 }, 265 },
264 ], 266 ],
265 }], 267 }],
266 ], 268 ],
267 } 269 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698