OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'include_tests%': 1, | 7 'include_tests%': 1, |
8 'chromium_code': 1, | 8 'chromium_code': 1, |
9 }, | 9 }, |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 ], | 183 ], |
184 'sources!': [ | 184 'sources!': [ |
185 'sender/external_video_encoder.h', | 185 'sender/external_video_encoder.h', |
186 'sender/external_video_encoder.cc', | 186 'sender/external_video_encoder.cc', |
187 'sender/video_encoder_impl.h', | 187 'sender/video_encoder_impl.h', |
188 'sender/video_encoder_impl.cc', | 188 'sender/video_encoder_impl.cc', |
189 'sender/vp8_encoder.cc', | 189 'sender/vp8_encoder.cc', |
190 'sender/vp8_encoder.h', | 190 'sender/vp8_encoder.h', |
191 ], | 191 ], |
192 }], # OS=="ios" | 192 }], # OS=="ios" |
| 193 # iOS and OS X encoders |
| 194 ['OS=="ios" or OS=="mac"', { |
| 195 'sources': [ |
| 196 'sender/h264_vt_encoder.cc', |
| 197 'sender/h264_vt_encoder.h', |
| 198 ], |
| 199 }], # OS=="ios" or OS=="mac" |
193 ], # conditions | 200 ], # conditions |
194 }, | 201 }, |
195 { | 202 { |
196 # GN version: //media/cast:net | 203 # GN version: //media/cast:net |
197 'target_name': 'cast_net', | 204 'target_name': 'cast_net', |
198 'type': 'static_library', | 205 'type': 'static_library', |
199 'include_dirs': [ | 206 'include_dirs': [ |
200 '<(DEPTH)/', | 207 '<(DEPTH)/', |
201 ], | 208 ], |
202 'dependencies': [ | 209 'dependencies': [ |
(...skipping 24 matching lines...) Expand all Loading... |
227 'net/rtp/rtp_packetizer.cc', | 234 'net/rtp/rtp_packetizer.cc', |
228 'net/rtp/rtp_packetizer.h', | 235 'net/rtp/rtp_packetizer.h', |
229 'net/rtp/rtp_sender.cc', | 236 'net/rtp/rtp_sender.cc', |
230 'net/rtp/rtp_sender.h', | 237 'net/rtp/rtp_sender.h', |
231 'net/udp_transport.cc', | 238 'net/udp_transport.cc', |
232 'net/udp_transport.h', | 239 'net/udp_transport.h', |
233 ], # source | 240 ], # source |
234 }, | 241 }, |
235 ], | 242 ], |
236 } | 243 } |
OLD | NEW |