| 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 'chromecast_branding%': 'Chromium', | 7 'chromecast_branding%': 'Chromium', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 '<(cast_internal_gyp):media_base_internal', | 29 '<(cast_internal_gyp):media_base_internal', |
| 30 ], | 30 ], |
| 31 }, { | 31 }, { |
| 32 'sources': [ | 32 'sources': [ |
| 33 'base/key_systems_common_simple.cc', | 33 'base/key_systems_common_simple.cc', |
| 34 ], | 34 ], |
| 35 }], | 35 }], |
| 36 ], | 36 ], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 'target_name': 'media_cdm', |
| 40 'type': '<(component)', |
| 41 'dependencies': [ |
| 42 'media_base', |
| 43 '../../base/base.gyp:base', |
| 44 '../../media/media.gyp:media', |
| 45 ], |
| 46 'sources': [ |
| 47 'cdm/browser_cdm_cast.cc', |
| 48 'cdm/browser_cdm_cast.h', |
| 49 ], |
| 50 }, |
| 51 { |
| 39 'target_name': 'cma_base', | 52 'target_name': 'cma_base', |
| 40 'type': '<(component)', | 53 'type': '<(component)', |
| 41 'dependencies': [ | 54 'dependencies': [ |
| 42 '../chromecast.gyp:cast_base', | 55 '../chromecast.gyp:cast_base', |
| 43 '../../base/base.gyp:base', | 56 '../../base/base.gyp:base', |
| 44 '../../media/media.gyp:media', | 57 '../../media/media.gyp:media', |
| 45 ], | 58 ], |
| 46 'include_dirs': [ | 59 'include_dirs': [ |
| 47 '../..', | 60 '../..', |
| 48 ], | 61 ], |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 }, | 172 }, |
| 160 { | 173 { |
| 161 'target_name': 'cast_media', | 174 'target_name': 'cast_media', |
| 162 'type': 'none', | 175 'type': 'none', |
| 163 'dependencies': [ | 176 'dependencies': [ |
| 164 'cma_backend', | 177 'cma_backend', |
| 165 'cma_base', | 178 'cma_base', |
| 166 'cma_filters', | 179 'cma_filters', |
| 167 'cma_ipc', | 180 'cma_ipc', |
| 168 'cma_ipc_streamer', | 181 'cma_ipc_streamer', |
| 182 'media_cdm', |
| 169 ], | 183 ], |
| 170 }, | 184 }, |
| 171 { | 185 { |
| 172 'target_name': 'cast_media_unittests', | 186 'target_name': 'cast_media_unittests', |
| 173 'type': '<(gtest_target_type)', | 187 'type': '<(gtest_target_type)', |
| 174 'dependencies': [ | 188 'dependencies': [ |
| 175 'cast_media', | 189 'cast_media', |
| 176 '../../base/base.gyp:base', | 190 '../../base/base.gyp:base', |
| 177 '../../base/base.gyp:base_i18n', | 191 '../../base/base.gyp:base_i18n', |
| 178 '../../base/base.gyp:test_support_base', | 192 '../../base/base.gyp:test_support_base', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 199 'cma/test/media_component_device_feeder_for_test.h', | 213 'cma/test/media_component_device_feeder_for_test.h', |
| 200 'cma/test/mock_frame_consumer.cc', | 214 'cma/test/mock_frame_consumer.cc', |
| 201 'cma/test/mock_frame_consumer.h', | 215 'cma/test/mock_frame_consumer.h', |
| 202 'cma/test/mock_frame_provider.cc', | 216 'cma/test/mock_frame_provider.cc', |
| 203 'cma/test/mock_frame_provider.h', | 217 'cma/test/mock_frame_provider.h', |
| 204 'cma/test/run_all_unittests.cc', | 218 'cma/test/run_all_unittests.cc', |
| 205 ], | 219 ], |
| 206 }, | 220 }, |
| 207 ], | 221 ], |
| 208 } | 222 } |
| OLD | NEW |