OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//chromecast/chromecast.gni") |
| 6 |
| 7 source_set("media") { |
| 8 sources = [ |
| 9 "cast_browser_cdm_factory.cc", |
| 10 "cast_browser_cdm_factory.h", |
| 11 "cast_media_client_android.cc", |
| 12 "cast_media_client_android.h", |
| 13 "cma_message_filter_host.cc", |
| 14 "cma_message_filter_host.h", |
| 15 "media_pipeline_host.cc", |
| 16 "media_pipeline_host.h", |
| 17 ] |
| 18 |
| 19 if (chromecast_branding == "public" && !is_android) { |
| 20 sources += [ "cast_browser_cdm_factory_simple.cc" ] |
| 21 } |
| 22 |
| 23 deps = [ |
| 24 "//base", |
| 25 "//chromecast/common/media", |
| 26 "//chromecast/media", |
| 27 "//chromecast/public", |
| 28 "//content/public/browser", |
| 29 "//media", |
| 30 "//ui/gfx/geometry", |
| 31 ] |
| 32 } |
OLD | NEW |