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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 | 6 |
7 source_set("media") { | 7 source_set("media") { |
8 sources = [ | 8 sources = [ |
9 "cast_browser_cdm_factory.cc", | 9 "cast_browser_cdm_factory.cc", |
10 "cast_browser_cdm_factory.h", | 10 "cast_browser_cdm_factory.h", |
11 "media_caps_impl.cc", | 11 "media_caps_impl.cc", |
12 "media_caps_impl.h", | 12 "media_caps_impl.h", |
13 "media_pipeline_backend_factory.h", | 13 "media_pipeline_backend_factory.h", |
14 "media_pipeline_host.cc", | |
15 "media_pipeline_host.h", | |
16 ] | 14 ] |
17 | 15 |
18 if (mojo_media_host == "browser") { | 16 if (mojo_media_host == "browser") { |
19 sources += [ | 17 sources += [ |
20 "cast_mojo_media_client.cc", | 18 "cast_mojo_media_client.cc", |
21 "cast_mojo_media_client.h", | 19 "cast_mojo_media_client.h", |
22 "cast_renderer.cc", | 20 "cast_renderer.cc", |
23 "cast_renderer.h", | 21 "cast_renderer.h", |
24 ] | 22 ] |
25 } | 23 } |
(...skipping 12 matching lines...) Expand all Loading... |
38 "//chromecast/common/media", | 36 "//chromecast/common/media", |
39 "//chromecast/common/media:interfaces", | 37 "//chromecast/common/media:interfaces", |
40 "//chromecast/media", | 38 "//chromecast/media", |
41 "//content/public/browser", | 39 "//content/public/browser", |
42 "//media", | 40 "//media", |
43 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
44 ] | 42 ] |
45 | 43 |
46 if (!is_android) { | 44 if (!is_android) { |
47 sources += [ | 45 sources += [ |
48 "cma_message_filter_host.cc", | |
49 "cma_message_filter_host.h", | |
50 "video_resolution_policy.cc", | 46 "video_resolution_policy.cc", |
51 "video_resolution_policy.h", | 47 "video_resolution_policy.h", |
52 ] | 48 ] |
53 } | 49 } |
54 } | 50 } |
OLD | NEW |