Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1362)

Side by Side Diff: chromecast/chromecast.gyp

Issue 825913003: Chromecast: adds BrowserCdmFactory that delegates to the platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromecast/browser/media/cast_browser_cdm_factory_simple.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'chromecast_branding%': 'Chromium', 10 'chromecast_branding%': 'Chromium',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 ], 188 ],
189 'conditions': [ 189 'conditions': [
190 ['chromecast_branding=="Chrome"', { 190 ['chromecast_branding=="Chrome"', {
191 'dependencies': [ 191 'dependencies': [
192 '<(cast_internal_gyp):cast_shell_internal', 192 '<(cast_internal_gyp):cast_shell_internal',
193 ], 193 ],
194 }, { 194 }, {
195 'sources': [ 195 'sources': [
196 'browser/cast_network_delegate_simple.cc', 196 'browser/cast_network_delegate_simple.cc',
197 'browser/devtools/remote_debugging_server_simple.cc', 197 'browser/devtools/remote_debugging_server_simple.cc',
198 'browser/media/cast_browser_cdm_factory_simple.cc',
198 'browser/metrics/platform_metrics_providers_simple.cc', 199 'browser/metrics/platform_metrics_providers_simple.cc',
199 'browser/pref_service_helper_simple.cc', 200 'browser/pref_service_helper_simple.cc',
200 'common/platform_client_auth_simple.cc', 201 'common/platform_client_auth_simple.cc',
201 'renderer/key_systems_cast_simple.cc', 202 'renderer/key_systems_cast_simple.cc',
202 ], 203 ],
203 'conditions': [ 204 'conditions': [
204 ['OS=="android"', { 205 ['OS=="android"', {
205 'sources': [ 206 'sources': [
206 'browser/service/cast_service_android.cc', 207 'browser/service/cast_service_android.cc',
207 'browser/service/cast_service_android.h', 208 'browser/service/cast_service_android.h',
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 }], 420 }],
420 ] 421 ]
421 }, # end of target 'cast_crash_client' 422 }, # end of target 'cast_crash_client'
422 { 423 {
423 'target_name': 'cast_shell_media', 424 'target_name': 'cast_shell_media',
424 'type': '<(component)', 425 'type': '<(component)',
425 'dependencies': [ 426 'dependencies': [
426 'media/media.gyp:cast_media', 427 'media/media.gyp:cast_media',
427 '../content/content.gyp:content', 428 '../content/content.gyp:content',
428 '../ipc/ipc.gyp:ipc', 429 '../ipc/ipc.gyp:ipc',
430 '../media/media.gyp:media',
429 ], 431 ],
430 'sources': [ 432 'sources': [
433 'browser/media/cast_browser_cdm_factory.cc',
434 'browser/media/cast_browser_cdm_factory.h',
431 'browser/media/cma_message_filter_host.cc', 435 'browser/media/cma_message_filter_host.cc',
432 'browser/media/cma_message_filter_host.h', 436 'browser/media/cma_message_filter_host.h',
433 'browser/media/cma_message_loop.cc', 437 'browser/media/cma_message_loop.cc',
434 'browser/media/cma_message_loop.h', 438 'browser/media/cma_message_loop.h',
435 'browser/media/media_pipeline_host.cc', 439 'browser/media/media_pipeline_host.cc',
436 'browser/media/media_pipeline_host.h', 440 'browser/media/media_pipeline_host.h',
437 'common/media/cma_ipc_common.h', 441 'common/media/cma_ipc_common.h',
438 'common/media/cma_messages.h', 442 'common/media/cma_messages.h',
439 'common/media/cma_message_generator.cc', 443 'common/media/cma_message_generator.cc',
440 'common/media/cma_message_generator.h', 444 'common/media/cma_message_generator.h',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 'cast_shell_core', 493 'cast_shell_core',
490 ], 494 ],
491 'sources': [ 495 'sources': [
492 'app/cast_main.cc', 496 'app/cast_main.cc',
493 ], 497 ],
494 }, 498 },
495 ], # end of targets 499 ], # end of targets
496 }], 500 }],
497 ], # end of conditions 501 ], # end of conditions
498 } 502 }
OLDNEW
« no previous file with comments | « chromecast/browser/media/cast_browser_cdm_factory_simple.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698