| 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("key_systems") { | 7 source_set("key_systems") { |
| 8 sources = [ | 8 sources = [ |
| 9 "key_systems_common.cc", | 9 "key_systems_common.cc", |
| 10 "key_systems_common.h", | 10 "key_systems_common.h", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 if (use_playready) { | 13 if (use_playready) { |
| 14 public_configs = [ "//chromecast:playready_config" ] | 14 public_configs = [ "//chromecast:playready_config" ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//chromecast/public/media", | 19 "//chromecast/public/media", |
| 20 "//media", | 20 "//media", |
| 21 "//third_party/widevine/cdm:headers", | 21 "//third_party/widevine/cdm:headers", |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 | 24 |
| 25 source_set("base") { | 25 source_set("base") { |
| 26 sources = [ | 26 sources = [ |
| 27 "audio_device_ids.cc", |
| 28 "audio_device_ids.h", |
| 27 "decrypt_context_impl.cc", | 29 "decrypt_context_impl.cc", |
| 28 "decrypt_context_impl.h", | 30 "decrypt_context_impl.h", |
| 29 "decrypt_context_impl_clearkey.cc", | 31 "decrypt_context_impl_clearkey.cc", |
| 30 "decrypt_context_impl_clearkey.h", | 32 "decrypt_context_impl_clearkey.h", |
| 31 "media_caps.cc", | 33 "media_caps.cc", |
| 32 "media_caps.h", | 34 "media_caps.h", |
| 33 "media_codec_support.cc", | 35 "media_codec_support.cc", |
| 34 "media_codec_support.h", | 36 "media_codec_support.h", |
| 35 "media_resource_tracker.cc", | 37 "media_resource_tracker.cc", |
| 36 "media_resource_tracker.h", | 38 "media_resource_tracker.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 53 deps = [ | 55 deps = [ |
| 54 "//base", | 56 "//base", |
| 55 "//chromecast/base", | 57 "//chromecast/base", |
| 56 "//chromecast/media/cma/backend", | 58 "//chromecast/media/cma/backend", |
| 57 "//crypto", | 59 "//crypto", |
| 58 "//crypto:platform", | 60 "//crypto:platform", |
| 59 "//media", | 61 "//media", |
| 60 "//ui/gfx/geometry", | 62 "//ui/gfx/geometry", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| OLD | NEW |