OLD | NEW |
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("message_loop") { | |
8 sources = [ | |
9 "media_message_loop.cc", | |
10 "media_message_loop.h", | |
11 "video_plane_controller.cc", | |
12 "video_plane_controller.h", | |
13 ] | |
14 | |
15 public_deps = [ | |
16 "//chromecast/public/media", | |
17 ] | |
18 | |
19 deps = [ | |
20 "//base", | |
21 "//chromecast/media/base:libcast_media_1.0", | |
22 "//chromecast/public", | |
23 ] | |
24 } | |
25 | |
26 source_set("key_systems") { | 7 source_set("key_systems") { |
27 sources = [ | 8 sources = [ |
28 "key_systems_common.cc", | 9 "key_systems_common.cc", |
29 "key_systems_common.h", | 10 "key_systems_common.h", |
30 ] | 11 ] |
31 | 12 |
32 if (use_playready) { | 13 if (use_playready) { |
33 public_configs = [ "//chromecast:playready_config" ] | 14 public_configs = [ "//chromecast:playready_config" ] |
34 } | 15 } |
35 | 16 |
(...skipping 10 matching lines...) Expand all Loading... |
46 "decrypt_context_impl.cc", | 27 "decrypt_context_impl.cc", |
47 "decrypt_context_impl.h", | 28 "decrypt_context_impl.h", |
48 "decrypt_context_impl_clearkey.cc", | 29 "decrypt_context_impl_clearkey.cc", |
49 "decrypt_context_impl_clearkey.h", | 30 "decrypt_context_impl_clearkey.h", |
50 "media_caps.cc", | 31 "media_caps.cc", |
51 "media_caps.h", | 32 "media_caps.h", |
52 "media_codec_support.cc", | 33 "media_codec_support.cc", |
53 "media_codec_support.h", | 34 "media_codec_support.h", |
54 "media_resource_tracker.cc", | 35 "media_resource_tracker.cc", |
55 "media_resource_tracker.h", | 36 "media_resource_tracker.h", |
| 37 "video_plane_controller.cc", |
| 38 "video_plane_controller.h", |
56 ] | 39 ] |
57 | 40 |
58 public_deps = [ | 41 public_deps = [ |
59 ":key_systems", | 42 ":key_systems", |
60 ":message_loop", | |
61 "//chromecast/public/media", | 43 "//chromecast/public/media", |
62 ] | 44 ] |
63 | 45 |
64 deps = [ | 46 deps = [ |
65 ":libcast_media_1.0", | 47 ":libcast_media_1.0", |
66 "//base", | 48 "//base", |
67 "//chromecast/base", | 49 "//chromecast/base", |
68 "//crypto", | 50 "//crypto", |
69 "//crypto:platform", | 51 "//crypto:platform", |
70 "//media", | 52 "//media", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "//chromecast/public/media", | 101 "//chromecast/public/media", |
120 ] | 102 ] |
121 | 103 |
122 deps = [ | 104 deps = [ |
123 "//base", | 105 "//base", |
124 "//build/config/sanitizers:deps", | 106 "//build/config/sanitizers:deps", |
125 "//chromecast/base", | 107 "//chromecast/base", |
126 "//chromecast/media/cma/backend", | 108 "//chromecast/media/cma/backend", |
127 ] | 109 ] |
128 } | 110 } |
OLD | NEW |