| 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("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 "cast_media_client_android.cc", | 11 "cast_media_client_android.cc", |
| 12 "cast_media_client_android.h", | 12 "cast_media_client_android.h", |
| 13 "cma_media_pipeline_client.cc", | 13 "cma_media_pipeline_client.cc", |
| 14 "cma_media_pipeline_client.h", | 14 "cma_media_pipeline_client.h", |
| 15 "cma_message_filter_host.cc", | 15 "cma_message_filter_host.cc", |
| 16 "cma_message_filter_host.h", | 16 "cma_message_filter_host.h", |
| 17 "media_pipeline_host.cc", | 17 "media_pipeline_host.cc", |
| 18 "media_pipeline_host.h", | 18 "media_pipeline_host.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//chromecast/base", | 23 "//chromecast/base", |
| 24 "//chromecast/common/media", | 24 "//chromecast/common/media", |
| 25 "//chromecast/media", | 25 "//chromecast/media", |
| 26 "//content/public/browser", | 26 "//content/public/browser", |
| 27 "//media", | 27 "//media", |
| 28 "//ui/gfx/geometry", | |
| 29 ] | 28 ] |
| 30 } | 29 } |
| OLD | NEW |