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

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

Issue 568243002: Adds initial key systems support for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address ddorwin/lcwu feedback Created 6 years, 3 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'media_base',
9 'type': '<(component)',
10 'dependencies': [
11 '../../base/base.gyp:base',
12 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h' ,
13 ],
14 'sources': [
15 'base/key_systems_common.cc',
16 'base/key_systems_common.h',
17 ],
18 },
19 {
8 'target_name': 'cma_base', 20 'target_name': 'cma_base',
9 'type': '<(component)', 21 'type': '<(component)',
10 'dependencies': [ 22 'dependencies': [
11 '../../base/base.gyp:base', 23 '../../base/base.gyp:base',
12 '../../media/media.gyp:media', 24 '../../media/media.gyp:media',
13 ], 25 ],
14 'include_dirs': [ 26 'include_dirs': [
15 '../..', 27 '../..',
16 ], 28 ],
17 'sources': [ 29 'sources': [
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'cma/base/mock_frame_provider.h', 131 'cma/base/mock_frame_provider.h',
120 'cma/base/run_all_unittests.cc', 132 'cma/base/run_all_unittests.cc',
121 'cma/filters/demuxer_stream_adapter_unittest.cc', 133 'cma/filters/demuxer_stream_adapter_unittest.cc',
122 'cma/ipc/media_message_fifo_unittest.cc', 134 'cma/ipc/media_message_fifo_unittest.cc',
123 'cma/ipc/media_message_unittest.cc', 135 'cma/ipc/media_message_unittest.cc',
124 'cma/ipc_streamer/av_streamer_unittest.cc', 136 'cma/ipc_streamer/av_streamer_unittest.cc',
125 ], 137 ],
126 }, 138 },
127 ], 139 ],
128 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698