OLD | NEW |
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 '-Wno-reorder', | 55 '-Wno-reorder', |
56 '-Wno-tautological-constant-out-of-range-compare', | 56 '-Wno-tautological-constant-out-of-range-compare', |
57 '-Wno-unused-private-field', | 57 '-Wno-unused-private-field', |
58 ], | 58 ], |
59 }, | 59 }, |
60 }, | 60 }, |
61 }], | 61 }], |
62 ], # conditions. | 62 ], # conditions. |
63 }, | 63 }, |
64 { | 64 { |
65 'target_name': 'fake_video_frames', | 65 'target_name': 'video_test_common', |
66 'type': 'static_library', | 66 'type': 'static_library', |
67 'sources': [ | 67 'sources': [ |
68 'fake_texture_frame.cc', | 68 'fake_texture_frame.cc', |
69 'fake_texture_frame.h', | 69 'fake_texture_frame.h', |
70 'frame_generator.cc', | 70 'frame_generator.cc', |
71 'frame_generator.h', | 71 'frame_generator.h', |
| 72 'frame_utils.cc', |
| 73 'frame_utils.h', |
72 ], | 74 ], |
73 'dependencies': [ | 75 'dependencies': [ |
74 '<(webrtc_root)/common_video/common_video.gyp:common_video', | 76 '<(webrtc_root)/common_video/common_video.gyp:common_video', |
75 ], | 77 ], |
76 }, | 78 }, |
77 { | 79 { |
78 'target_name': 'rtp_test_utils', | 80 'target_name': 'rtp_test_utils', |
79 'type': 'static_library', | 81 'type': 'static_library', |
80 'sources': [ | 82 'sources': [ |
81 'rtcp_packet_parser.cc', | 83 'rtcp_packet_parser.cc', |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 '../build/isolate.gypi', | 265 '../build/isolate.gypi', |
264 ], | 266 ], |
265 'sources': [ | 267 'sources': [ |
266 'test_support_unittests.isolate', | 268 'test_support_unittests.isolate', |
267 ], | 269 ], |
268 }, | 270 }, |
269 ], | 271 ], |
270 }], | 272 }], |
271 ], | 273 ], |
272 } | 274 } |
OLD | NEW |