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

Side by Side Diff: chromecast/media/cdm/BUILD.gn

Issue 2586353002: [Chromecast][Clean-Up] Remove CastCdmProxy. (Closed)
Patch Set: Created 4 years 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 | « no previous file | chromecast/media/cdm/cast_cdm_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 6
7 source_set("cdm") { 7 source_set("cdm") {
8 sources = [ 8 sources = [
9 "cast_cdm.cc", 9 "cast_cdm.cc",
10 "cast_cdm.h", 10 "cast_cdm.h",
11 "cast_cdm_context.cc", 11 "cast_cdm_context.cc",
12 "cast_cdm_context.h", 12 "cast_cdm_context.h",
13 "cast_cdm_factory.cc", 13 "cast_cdm_factory.cc",
14 "cast_cdm_factory.h", 14 "cast_cdm_factory.h",
15 "cast_cdm_proxy.cc",
16 "cast_cdm_proxy.h",
17 "chromecast_init_data.cc", 15 "chromecast_init_data.cc",
18 "chromecast_init_data.h", 16 "chromecast_init_data.h",
19 ] 17 ]
20 18
21 configs += [ "//media/mojo/services:mojo_media_config" ]
22
23 deps = [ 19 deps = [
24 "//base", 20 "//base",
25 "//chromecast/media/base", 21 "//chromecast/media/base",
26 "//media", 22 "//media",
27 "//url:url", 23 "//url:url",
28 ] 24 ]
29 25
30 if (is_android && use_playready) { 26 if (is_android && use_playready) {
31 sources += [ 27 sources += [
32 "playready_drm_delegate_android.cc", 28 "playready_drm_delegate_android.cc",
33 "playready_drm_delegate_android.h", 29 "playready_drm_delegate_android.h",
34 ] 30 ]
35 31
36 deps += [ "//media/base/android" ] 32 deps += [ "//media/base/android" ]
37 } 33 }
38 } 34 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/media/cdm/cast_cdm_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698