OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//chromecast/chromecast.gni") | |
6 | |
7 source_set("renderer") { | |
8 sources = [ | |
9 "cast_content_renderer_client.cc", | |
10 "cast_content_renderer_client.h", | |
11 "cast_media_load_deferrer.cc", | |
12 "cast_media_load_deferrer.h", | |
13 "cast_render_process_observer.cc", | |
14 "cast_render_process_observer.h", | |
15 "key_systems_cast.cc", | |
16 "key_systems_cast.h", | |
17 | |
18 # TODO(slan): Can these be added into "//chromecast/renderer/media"? | |
gunsch
2015/08/05 02:04:11
I don't understand, why can't they already? ISTM l
slan
2015/08/05 14:34:58
Huh. You're correct. Moved.
| |
19 "media/capabilities_message_filter.cc", | |
20 "media/capabilities_message_filter.h", | |
21 ] | |
22 | |
23 if (chromecast_branding == "public") { | |
24 sources += [ "cast_content_renderer_client_simple.cc" ] | |
25 } | |
26 | |
27 public_deps = [ | |
28 "//chromecast/renderer/media", | |
gunsch
2015/08/05 02:04:10
Note: this and other media deps should only be her
slan
2015/08/05 14:34:58
Noted. I've added a (!is_android) conditional. I w
| |
29 ] | |
30 | |
31 deps = [ | |
32 "//base", | |
33 "//chromecast/base", | |
34 "//chromecast/crash", | |
35 "//chromecast/common/media", | |
36 "//chromecast/media", | |
37 "//components/cdm/renderer", | |
38 "//components/network_hints/renderer", | |
39 "//content/public/common", | |
40 "//content/public/renderer", | |
41 "//crypto", | |
42 "//ipc", | |
43 "//media", | |
44 "//third_party/widevine/cdm:version_h", | |
45 ] | |
46 } | |
OLD | NEW |