| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'conditions': [ | 124 'conditions': [ |
| 125 # use a restricted subset of media and no software codecs on iOS | 125 # use a restricted subset of media and no software codecs on iOS |
| 126 ['OS=="ios"', { | 126 ['OS=="ios"', { |
| 127 'dependencies': [ '<(DEPTH)/media/media.gyp:media_for_cast_ios' ], | 127 'dependencies': [ '<(DEPTH)/media/media.gyp:media_for_cast_ios' ], |
| 128 'dependencies!': [ | 128 'dependencies!': [ |
| 129 '<(DEPTH)/media/media.gyp:media', | 129 '<(DEPTH)/media/media.gyp:media', |
| 130 '<(DEPTH)/third_party/opus/opus.gyp:opus', | 130 '<(DEPTH)/third_party/opus/opus.gyp:opus', |
| 131 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', | 131 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', |
| 132 ], | 132 ], |
| 133 }], # OS=="ios" | 133 }], # OS=="ios" |
| 134 ['OS=="win"', { | |
| 135 'dependencies': [ '<(DEPTH)/media/media.gyp:mf_initializer' ], | |
| 136 }], | |
| 137 ], # conditions | 134 ], # conditions |
| 138 }, | 135 }, |
| 139 { | 136 { |
| 140 # GN version: //media/cast:sender | 137 # GN version: //media/cast:sender |
| 141 'target_name': 'cast_sender', | 138 'target_name': 'cast_sender', |
| 142 'type': 'static_library', | 139 'type': 'static_library', |
| 143 'include_dirs': [ | 140 'include_dirs': [ |
| 144 '<(DEPTH)/', | 141 '<(DEPTH)/', |
| 145 ], | 142 ], |
| 146 'dependencies': [ | 143 'dependencies': [ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 'net/rtp/rtp_parser.cc', | 261 'net/rtp/rtp_parser.cc', |
| 265 'net/rtp/rtp_parser.h', | 262 'net/rtp/rtp_parser.h', |
| 266 'net/rtp/rtp_sender.cc', | 263 'net/rtp/rtp_sender.cc', |
| 267 'net/rtp/rtp_sender.h', | 264 'net/rtp/rtp_sender.h', |
| 268 'net/udp_transport.cc', | 265 'net/udp_transport.cc', |
| 269 'net/udp_transport.h', | 266 'net/udp_transport.h', |
| 270 ], # sources | 267 ], # sources |
| 271 }, | 268 }, |
| 272 ], | 269 ], |
| 273 } | 270 } |
| OLD | NEW |