| 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 }], |
| 134 ], # conditions | 137 ], # conditions |
| 135 }, | 138 }, |
| 136 { | 139 { |
| 137 # GN version: //media/cast:sender | 140 # GN version: //media/cast:sender |
| 138 'target_name': 'cast_sender', | 141 'target_name': 'cast_sender', |
| 139 'type': 'static_library', | 142 'type': 'static_library', |
| 140 'include_dirs': [ | 143 'include_dirs': [ |
| 141 '<(DEPTH)/', | 144 '<(DEPTH)/', |
| 142 ], | 145 ], |
| 143 'dependencies': [ | 146 'dependencies': [ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'net/rtp/rtp_parser.cc', | 264 'net/rtp/rtp_parser.cc', |
| 262 'net/rtp/rtp_parser.h', | 265 'net/rtp/rtp_parser.h', |
| 263 'net/rtp/rtp_sender.cc', | 266 'net/rtp/rtp_sender.cc', |
| 264 'net/rtp/rtp_sender.h', | 267 'net/rtp/rtp_sender.h', |
| 265 'net/udp_transport.cc', | 268 'net/udp_transport.cc', |
| 266 'net/udp_transport.h', | 269 'net/udp_transport.h', |
| 267 ], # sources | 270 ], # sources |
| 268 }, | 271 }, |
| 269 ], | 272 ], |
| 270 } | 273 } |
| OLD | NEW |