OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 '<(webrtc_root)/common.gyp:webrtc_common', | 60 '<(webrtc_root)/common.gyp:webrtc_common', |
61 '<(webrtc_root)/modules/modules.gyp:media_file', | 61 '<(webrtc_root)/modules/modules.gyp:media_file', |
62 '<(webrtc_root)/modules/modules.gyp:video_render', | 62 '<(webrtc_root)/modules/modules.gyp:video_render', |
63 '<(webrtc_root)/test/test.gyp:frame_generator', | 63 '<(webrtc_root)/test/test.gyp:frame_generator', |
64 '<(webrtc_root)/test/test.gyp:test_support', | 64 '<(webrtc_root)/test/test.gyp:test_support', |
65 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | 65 '<(webrtc_root)/test/test.gyp:rtp_test_utils', |
66 '<(webrtc_root)/webrtc.gyp:webrtc', | 66 '<(webrtc_root)/webrtc.gyp:webrtc', |
67 ], | 67 ], |
68 }, | 68 }, |
69 { | 69 { |
| 70 'target_name': 'h264_test', |
| 71 'type': 'executable', |
| 72 'dependencies': [ |
| 73 'webrtc_test_common', |
| 74 ], |
| 75 'sources': [ |
| 76 'h264_test.cc', |
| 77 ], |
| 78 }, |
| 79 { |
70 'target_name': 'webrtc_test_renderer', | 80 'target_name': 'webrtc_test_renderer', |
71 'type': 'static_library', | 81 'type': 'static_library', |
72 'sources': [ | 82 'sources': [ |
73 'gl/gl_renderer.cc', | 83 'gl/gl_renderer.cc', |
74 'gl/gl_renderer.h', | 84 'gl/gl_renderer.h', |
75 'linux/glx_renderer.cc', | 85 'linux/glx_renderer.cc', |
76 'linux/glx_renderer.h', | 86 'linux/glx_renderer.h', |
77 'linux/video_renderer_linux.cc', | 87 'linux/video_renderer_linux.cc', |
78 'mac/video_renderer_mac.h', | 88 'mac/video_renderer_mac.h', |
79 'mac/video_renderer_mac.mm', | 89 'mac/video_renderer_mac.mm', |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'fake_network_pipe_unittest.cc', | 169 'fake_network_pipe_unittest.cc', |
160 'frame_generator_unittest.cc', | 170 'frame_generator_unittest.cc', |
161 'rtp_file_reader_unittest.cc', | 171 'rtp_file_reader_unittest.cc', |
162 'rtp_file_writer_unittest.cc', | 172 'rtp_file_writer_unittest.cc', |
163 ], | 173 ], |
164 }, | 174 }, |
165 ], #targets | 175 ], #targets |
166 }], # include_tests | 176 }], # include_tests |
167 ], # conditions | 177 ], # conditions |
168 } | 178 } |
OLD | NEW |