| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 'sender/vp8_encoder.cc', | 192 'sender/vp8_encoder.cc', |
| 193 'sender/vp8_encoder.h', | 193 'sender/vp8_encoder.h', |
| 194 ], | 194 ], |
| 195 }], # OS=="ios" | 195 }], # OS=="ios" |
| 196 # iOS and OS X encoders | 196 # iOS and OS X encoders |
| 197 ['OS=="ios" or OS=="mac"', { | 197 ['OS=="ios" or OS=="mac"', { |
| 198 'sources': [ | 198 'sources': [ |
| 199 'sender/h264_vt_encoder.cc', | 199 'sender/h264_vt_encoder.cc', |
| 200 'sender/h264_vt_encoder.h', | 200 'sender/h264_vt_encoder.h', |
| 201 ], | 201 ], |
| 202 'link_settings': { | |
| 203 'libraries': [ | |
| 204 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', | |
| 205 ], | |
| 206 }, | |
| 207 }], # OS=="ios" or OS=="mac" | 202 }], # OS=="ios" or OS=="mac" |
| 208 ['OS=="mac"', { | |
| 209 'link_settings': { | |
| 210 'libraries': [ | |
| 211 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', | |
| 212 ], | |
| 213 }, | |
| 214 }], # OS=="mac" | |
| 215 ], # conditions | 203 ], # conditions |
| 216 }, | 204 }, |
| 217 { | 205 { |
| 218 # GN version: //media/cast:net | 206 # GN version: //media/cast:net |
| 219 'target_name': 'cast_net', | 207 'target_name': 'cast_net', |
| 220 'type': 'static_library', | 208 'type': 'static_library', |
| 221 'include_dirs': [ | 209 'include_dirs': [ |
| 222 '<(DEPTH)/', | 210 '<(DEPTH)/', |
| 223 ], | 211 ], |
| 224 'dependencies': [ | 212 'dependencies': [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 251 'net/rtp/rtp_parser.cc', | 239 'net/rtp/rtp_parser.cc', |
| 252 'net/rtp/rtp_parser.h', | 240 'net/rtp/rtp_parser.h', |
| 253 'net/rtp/rtp_sender.cc', | 241 'net/rtp/rtp_sender.cc', |
| 254 'net/rtp/rtp_sender.h', | 242 'net/rtp/rtp_sender.h', |
| 255 'net/udp_transport.cc', | 243 'net/udp_transport.cc', |
| 256 'net/udp_transport.h', | 244 'net/udp_transport.h', |
| 257 ], # source | 245 ], # source |
| 258 }, | 246 }, |
| 259 ], | 247 ], |
| 260 } | 248 } |
| OLD | NEW |