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 source_set("media") { | 5 source_set("media") { |
6 sources = [ | 6 sources = [ |
| 7 "cast_media_client.cc", |
| 8 "cast_media_client.h", |
7 "media_caps_observer_impl.cc", | 9 "media_caps_observer_impl.cc", |
8 "media_caps_observer_impl.h", | 10 "media_caps_observer_impl.h", |
9 ] | 11 ] |
10 | 12 |
11 deps = [ | 13 deps = [ |
| 14 "//base", |
12 "//chromecast/common/media:interfaces", | 15 "//chromecast/common/media:interfaces", |
13 "//chromecast/media", | 16 "//chromecast/media", |
| 17 "//chromecast/media/cdm", |
| 18 "//chromecast/public:public", |
| 19 "//content/public/renderer", |
| 20 "//media", |
14 "//ui/gfx/geometry", | 21 "//ui/gfx/geometry", |
15 ] | 22 ] |
16 } | 23 } |
OLD | NEW |