| 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': { |
| 7 'chromecast_branding%': 'Chromium', |
| 8 }, |
| 6 'targets': [ | 9 'targets': [ |
| 7 { | 10 { |
| 11 'target_name': 'media_base', |
| 12 'type': '<(component)', |
| 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', |
| 15 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h'
, |
| 16 ], |
| 17 'sources': [ |
| 18 'base/key_systems_common.cc', |
| 19 'base/key_systems_common.h', |
| 20 ], |
| 21 'conditions': [ |
| 22 ['chromecast_branding=="Chrome"', { |
| 23 'dependencies': [ |
| 24 'internal/chromecast_internal.gyp:media_base_internal', |
| 25 ], |
| 26 }, { |
| 27 'sources': [ |
| 28 'base/key_systems_common_simple.cc', |
| 29 ], |
| 30 }], |
| 31 ], |
| 32 }, |
| 33 { |
| 8 'target_name': 'cma_base', | 34 'target_name': 'cma_base', |
| 9 'type': '<(component)', | 35 'type': '<(component)', |
| 10 'dependencies': [ | 36 'dependencies': [ |
| 11 '../../base/base.gyp:base', | 37 '../../base/base.gyp:base', |
| 12 '../../media/media.gyp:media', | 38 '../../media/media.gyp:media', |
| 13 ], | 39 ], |
| 14 'include_dirs': [ | 40 'include_dirs': [ |
| 15 '../..', | 41 '../..', |
| 16 ], | 42 ], |
| 17 'sources': [ | 43 'sources': [ |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 'cma/base/mock_frame_provider.h', | 145 'cma/base/mock_frame_provider.h', |
| 120 'cma/base/run_all_unittests.cc', | 146 'cma/base/run_all_unittests.cc', |
| 121 'cma/filters/demuxer_stream_adapter_unittest.cc', | 147 'cma/filters/demuxer_stream_adapter_unittest.cc', |
| 122 'cma/ipc/media_message_fifo_unittest.cc', | 148 'cma/ipc/media_message_fifo_unittest.cc', |
| 123 'cma/ipc/media_message_unittest.cc', | 149 'cma/ipc/media_message_unittest.cc', |
| 124 'cma/ipc_streamer/av_streamer_unittest.cc', | 150 'cma/ipc_streamer/av_streamer_unittest.cc', |
| 125 ], | 151 ], |
| 126 }, | 152 }, |
| 127 ], | 153 ], |
| 128 } | 154 } |
| OLD | NEW |