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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 ], | 185 ], |
186 'sources!': [ | 186 'sources!': [ |
187 'sender/external_video_encoder.h', | 187 'sender/external_video_encoder.h', |
188 'sender/external_video_encoder.cc', | 188 'sender/external_video_encoder.cc', |
189 'sender/video_encoder_impl.h', | 189 'sender/video_encoder_impl.h', |
190 'sender/video_encoder_impl.cc', | 190 'sender/video_encoder_impl.cc', |
191 'sender/vp8_encoder.cc', | 191 'sender/vp8_encoder.cc', |
192 'sender/vp8_encoder.h', | 192 'sender/vp8_encoder.h', |
193 ], | 193 ], |
194 }], # OS=="ios" | 194 }], # OS=="ios" |
| 195 # iOS and OS X encoders |
| 196 ['OS=="ios" or OS=="mac"', { |
| 197 'sources': [ |
| 198 'sender/h264_vt_encoder.cc', |
| 199 'sender/h264_vt_encoder.h', |
| 200 ], |
| 201 }], # OS=="ios" or OS=="mac" |
195 ], # conditions | 202 ], # conditions |
196 }, | 203 }, |
197 { | 204 { |
198 # GN version: //media/cast:net | 205 # GN version: //media/cast:net |
199 'target_name': 'cast_net', | 206 'target_name': 'cast_net', |
200 'type': 'static_library', | 207 'type': 'static_library', |
201 'include_dirs': [ | 208 'include_dirs': [ |
202 '<(DEPTH)/', | 209 '<(DEPTH)/', |
203 ], | 210 ], |
204 'dependencies': [ | 211 'dependencies': [ |
(...skipping 24 matching lines...) Expand all Loading... |
229 'net/rtp/rtp_packetizer.cc', | 236 'net/rtp/rtp_packetizer.cc', |
230 'net/rtp/rtp_packetizer.h', | 237 'net/rtp/rtp_packetizer.h', |
231 'net/rtp/rtp_sender.cc', | 238 'net/rtp/rtp_sender.cc', |
232 'net/rtp/rtp_sender.h', | 239 'net/rtp/rtp_sender.h', |
233 'net/udp_transport.cc', | 240 'net/udp_transport.cc', |
234 'net/udp_transport.h', | 241 'net/udp_transport.h', |
235 ], # source | 242 ], # source |
236 }, | 243 }, |
237 ], | 244 ], |
238 } | 245 } |
OLD | NEW |