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

Side by Side Diff: chromecast/renderer/BUILD.gn

Issue 2712983004: Simplify/Cleanup MediaClient (Closed)
Patch Set: Fix test leak Created 3 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 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("renderer") { 7 source_set("renderer") {
8 sources = [ 8 sources = [
9 "cast_content_renderer_client.cc", 9 "cast_content_renderer_client.cc",
10 "cast_content_renderer_client.h", 10 "cast_content_renderer_client.h",
11 "cast_render_frame_action_deferrer.cc", 11 "cast_render_frame_action_deferrer.cc",
12 "cast_render_frame_action_deferrer.h", 12 "cast_render_frame_action_deferrer.h",
13 "key_systems_cast.cc",
14 "key_systems_cast.h",
15 ] 13 ]
16 14
17 public_deps = [ 15 public_deps = [
18 "//chromecast/renderer/media", 16 "//chromecast/renderer/media",
19 ] 17 ]
20 18
21 if (chromecast_branding == "public") { 19 if (chromecast_branding == "public") {
22 sources += [ "cast_content_renderer_client_simple.cc" ] 20 sources += [ "cast_content_renderer_client_simple.cc" ]
23 } 21 }
24 22
25 if (use_playready) { 23 if (use_playready) {
26 configs += [ "//chromecast:playready_config" ] 24 configs += [ "//chromecast:playready_config" ]
27 } 25 }
28 26
29 deps = [ 27 deps = [
30 "//base", 28 "//base",
31 "//chromecast/base", 29 "//chromecast/base",
32 "//chromecast/common/media", 30 "//chromecast/common/media",
33 "//chromecast/crash", 31 "//chromecast/crash",
34 "//chromecast/media", 32 "//chromecast/media",
35 "//chromecast/media", 33 "//chromecast/media",
36 "//components/cdm/renderer",
37 "//components/network_hints/renderer", 34 "//components/network_hints/renderer",
38 "//content/public/common", 35 "//content/public/common",
39 "//content/public/renderer", 36 "//content/public/renderer",
40 "//crypto", 37 "//crypto",
41 "//ipc", 38 "//ipc",
42 "//media", 39 "//media",
43 "//services/service_manager/public/cpp", 40 "//services/service_manager/public/cpp",
44 "//third_party/widevine/cdm:headers",
45 ] 41 ]
46 } 42 }
OLDNEW
« no previous file with comments | « chromecast/common/media/cast_media_client.cc ('k') | chromecast/renderer/cast_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698