| 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 ], | 198 '../../third_party/boringssl/boringssl.gyp:boringssl', |
| 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 }], | |
| 209 ], | 199 ], |
| 210 'sources': [ | 200 'sources': [ |
| 211 'cma/pipeline/audio_pipeline.cc', | 201 'cma/pipeline/audio_pipeline.cc', |
| 212 'cma/pipeline/audio_pipeline.h', | 202 'cma/pipeline/audio_pipeline.h', |
| 213 'cma/pipeline/audio_pipeline_impl.cc', | 203 'cma/pipeline/audio_pipeline_impl.cc', |
| 214 'cma/pipeline/audio_pipeline_impl.h', | 204 'cma/pipeline/audio_pipeline_impl.h', |
| 215 'cma/pipeline/av_pipeline_client.cc', | 205 'cma/pipeline/av_pipeline_client.cc', |
| 216 'cma/pipeline/av_pipeline_client.h', | 206 'cma/pipeline/av_pipeline_client.h', |
| 217 'cma/pipeline/av_pipeline_impl.cc', | 207 'cma/pipeline/av_pipeline_impl.cc', |
| 218 'cma/pipeline/av_pipeline_impl.h', | 208 'cma/pipeline/av_pipeline_impl.h', |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 '../..', | 301 '../..', |
| 312 ], | 302 ], |
| 313 'sources': [ | 303 'sources': [ |
| 314 'base/cast_media_default.cc', | 304 'base/cast_media_default.cc', |
| 315 ], | 305 ], |
| 316 } | 306 } |
| 317 ] | 307 ] |
| 318 }], | 308 }], |
| 319 ], | 309 ], |
| 320 } | 310 } |
| OLD | NEW |