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

Side by Side Diff: chromecast/media/media.gyp

Issue 962793005: Adds MediaClientAndroid to support embedder/MediaDrmBridge interaction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up code, implement actual Delegates for Widevine (Android) and Chromecast Created 5 years, 8 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
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 'chromecast_branding%': 'Chromium', 7 'chromecast_branding%': 'Chromium',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'type': '<(component)', 44 'type': '<(component)',
45 'dependencies': [ 45 'dependencies': [
46 'media_base', 46 'media_base',
47 '../../base/base.gyp:base', 47 '../../base/base.gyp:base',
48 '../../media/media.gyp:media', 48 '../../media/media.gyp:media',
49 ], 49 ],
50 'sources': [ 50 'sources': [
51 'cdm/browser_cdm_cast.cc', 51 'cdm/browser_cdm_cast.cc',
52 'cdm/browser_cdm_cast.h', 52 'cdm/browser_cdm_cast.h',
53 ], 53 ],
54 'conditions': [
55 ['use_playready==1', {
56 'sources': [
57 'cdm/playready_drm_delegate_android.cc',
58 'cdm/playready_drm_delegate_android.h',
59 ],
60 }],
61 ],
54 }, 62 },
55 { 63 {
56 'target_name': 'cma_base', 64 'target_name': 'cma_base',
57 'type': '<(component)', 65 'type': '<(component)',
58 'dependencies': [ 66 'dependencies': [
59 '../chromecast.gyp:cast_base', 67 '../chromecast.gyp:cast_base',
60 '../../base/base.gyp:base', 68 '../../base/base.gyp:base',
61 '../../media/media.gyp:media', 69 '../../media/media.gyp:media',
62 ], 70 ],
63 'include_dirs': [ 71 'include_dirs': [
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'cma/test/media_component_device_feeder_for_test.h', 284 'cma/test/media_component_device_feeder_for_test.h',
277 'cma/test/mock_frame_consumer.cc', 285 'cma/test/mock_frame_consumer.cc',
278 'cma/test/mock_frame_consumer.h', 286 'cma/test/mock_frame_consumer.h',
279 'cma/test/mock_frame_provider.cc', 287 'cma/test/mock_frame_provider.cc',
280 'cma/test/mock_frame_provider.h', 288 'cma/test/mock_frame_provider.h',
281 'cma/test/run_all_unittests.cc', 289 'cma/test/run_all_unittests.cc',
282 ], 290 ],
283 }, 291 },
284 ], 292 ],
285 } 293 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698