| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'chromecast_branding%': 'Chromium', | 8 'chromecast_branding%': 'Chromium', |
| 9 'libcast_media_gyp%': '', | 9 'libcast_media_gyp%': '', |
| 10 'use_default_libcast_media%': 1, | 10 'use_default_libcast_media%': 1, |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'target_name': 'cma_pipeline', | 188 'target_name': 'cma_pipeline', |
| 189 'type': '<(component)', | 189 'type': '<(component)', |
| 190 'dependencies': [ | 190 'dependencies': [ |
| 191 'cma_backend', | 191 'cma_backend', |
| 192 'cma_base', | 192 'cma_base', |
| 193 'media_base', | 193 'media_base', |
| 194 'media_cdm', | 194 'media_cdm', |
| 195 '../../base/base.gyp:base', | 195 '../../base/base.gyp:base', |
| 196 '../../crypto/crypto.gyp:crypto', | 196 '../../crypto/crypto.gyp:crypto', |
| 197 '../../media/media.gyp:media', | 197 '../../media/media.gyp:media', |
| 198 '../../third_party/boringssl/boringssl.gyp:boringssl', | 198 ], |
| 199 'conditions': [ |
| 200 ['chromecast_branding=="Chrome"', { |
| 201 'dependencies': [ |
| 202 '../internal/cast_system.gyp:openssl', |
| 203 ], |
| 204 }, { |
| 205 'dependencies': [ |
| 206 '../../third_party/boringssl/boringssl.gyp:boringssl', |
| 207 ], |
| 208 }], |
| 199 ], | 209 ], |
| 200 'sources': [ | 210 'sources': [ |
| 201 'cma/pipeline/audio_pipeline.cc', | 211 'cma/pipeline/audio_pipeline.cc', |
| 202 'cma/pipeline/audio_pipeline.h', | 212 'cma/pipeline/audio_pipeline.h', |
| 203 'cma/pipeline/audio_pipeline_impl.cc', | 213 'cma/pipeline/audio_pipeline_impl.cc', |
| 204 'cma/pipeline/audio_pipeline_impl.h', | 214 'cma/pipeline/audio_pipeline_impl.h', |
| 205 'cma/pipeline/av_pipeline_client.cc', | 215 'cma/pipeline/av_pipeline_client.cc', |
| 206 'cma/pipeline/av_pipeline_client.h', | 216 'cma/pipeline/av_pipeline_client.h', |
| 207 'cma/pipeline/av_pipeline_impl.cc', | 217 'cma/pipeline/av_pipeline_impl.cc', |
| 208 'cma/pipeline/av_pipeline_impl.h', | 218 'cma/pipeline/av_pipeline_impl.h', |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 '../..', | 311 '../..', |
| 302 ], | 312 ], |
| 303 'sources': [ | 313 'sources': [ |
| 304 'base/cast_media_default.cc', | 314 'base/cast_media_default.cc', |
| 305 ], | 315 ], |
| 306 } | 316 } |
| 307 ] | 317 ] |
| 308 }], | 318 }], |
| 309 ], | 319 ], |
| 310 } | 320 } |
| OLD | NEW |