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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 ] | 179 ] |
180 'sources!': [ | 180 'sources!': [ |
181 'sender/external_video_encoder.h', | 181 'sender/external_video_encoder.h', |
182 'sender/external_video_encoder.cc', | 182 'sender/external_video_encoder.cc', |
183 'sender/video_encoder_impl.h', | 183 'sender/video_encoder_impl.h', |
184 'sender/video_encoder_impl.cc', | 184 'sender/video_encoder_impl.cc', |
185 'sender/vp8_encoder.cc', | 185 'sender/vp8_encoder.cc', |
186 'sender/vp8_encoder.h', | 186 'sender/vp8_encoder.h', |
187 ], | 187 ], |
188 }], # OS=="ios" | 188 }], # OS=="ios" |
| 189 # iOS and OS X encoders |
| 190 ['OS=="ios" or OS=="mac"', { |
| 191 'sources': [ |
| 192 'sender/h264_vt_encoder.cc', |
| 193 'sender/h264_vt_encoder.h', |
| 194 ], |
| 195 }], # OS=="ios" or OS=="mac" |
189 ], # conditions | 196 ], # conditions |
190 }, | 197 }, |
191 { | 198 { |
192 # GN version: //media/cast:net | 199 # GN version: //media/cast:net |
193 'target_name': 'cast_net', | 200 'target_name': 'cast_net', |
194 'type': 'static_library', | 201 'type': 'static_library', |
195 'include_dirs': [ | 202 'include_dirs': [ |
196 '<(DEPTH)/', | 203 '<(DEPTH)/', |
197 ], | 204 ], |
198 'dependencies': [ | 205 'dependencies': [ |
(...skipping 24 matching lines...) Expand all Loading... |
223 'net/rtp/rtp_packetizer.cc', | 230 'net/rtp/rtp_packetizer.cc', |
224 'net/rtp/rtp_packetizer.h', | 231 'net/rtp/rtp_packetizer.h', |
225 'net/rtp/rtp_sender.cc', | 232 'net/rtp/rtp_sender.cc', |
226 'net/rtp/rtp_sender.h', | 233 'net/rtp/rtp_sender.h', |
227 'net/udp_transport.cc', | 234 'net/udp_transport.cc', |
228 'net/udp_transport.h', | 235 'net/udp_transport.h', |
229 ], # source | 236 ], # source |
230 }, | 237 }, |
231 ], | 238 ], |
232 } | 239 } |
OLD | NEW |