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 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
7 | 7 |
8 source_set("media") { | 8 source_set("media") { |
9 sources = [ | 9 sources = [ |
10 "cast_browser_cdm_factory.cc", | 10 "cast_browser_cdm_factory.cc", |
11 "cast_browser_cdm_factory.h", | 11 "cast_browser_cdm_factory.h", |
12 "cast_media_client_android.cc", | 12 "cast_media_client_android.cc", |
13 "cast_media_client_android.h", | 13 "cast_media_client_android.h", |
| 14 "media_pipeline_backend_factory.h", |
14 "media_pipeline_host.cc", | 15 "media_pipeline_host.cc", |
15 "media_pipeline_host.h", | 16 "media_pipeline_host.h", |
16 ] | 17 ] |
17 | 18 |
18 if (mojo_media_host == "browser") { | 19 if (mojo_media_host == "browser") { |
19 sources += [ | 20 sources += [ |
20 "cast_mojo_media_client.cc", | 21 "cast_mojo_media_client.cc", |
21 "cast_mojo_media_client.h", | 22 "cast_mojo_media_client.h", |
22 "cast_renderer.cc", | 23 "cast_renderer.cc", |
23 "cast_renderer.h", | 24 "cast_renderer.h", |
(...skipping 21 matching lines...) Expand all Loading... |
45 | 46 |
46 if (is_android) { | 47 if (is_android) { |
47 deps += [ "//components/cdm/browser" ] | 48 deps += [ "//components/cdm/browser" ] |
48 } else { | 49 } else { |
49 sources += [ | 50 sources += [ |
50 "cma_message_filter_host.cc", | 51 "cma_message_filter_host.cc", |
51 "cma_message_filter_host.h", | 52 "cma_message_filter_host.h", |
52 ] | 53 ] |
53 } | 54 } |
54 } | 55 } |
OLD | NEW |