| 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("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//chromecast/chromecast.gni") | 6 import("//chromecast/chromecast.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 libcast_media_target = "" | 9 libcast_media_target = "" |
| 10 } | 10 } |
| 11 | 11 |
| 12 source_set("base") { | 12 source_set("base") { |
| 13 sources = [ | 13 sources = [ |
| 14 "decrypt_context.cc", | 14 "decrypt_context.cc", |
| 15 "decrypt_context.h", | 15 "decrypt_context.h", |
| 16 "decrypt_context_clearkey.cc", | 16 "decrypt_context_clearkey.cc", |
| 17 "decrypt_context_clearkey.h", | 17 "decrypt_context_clearkey.h", |
| 18 "key_systems_common.cc", | 18 "key_systems_common.cc", |
| 19 "key_systems_common.h", | 19 "key_systems_common.h", |
| 20 "media_caps.cc", | 20 "media_caps.cc", |
| 21 "media_caps.h", | 21 "media_caps.h", |
| 22 "media_codec_support.cc", |
| 23 "media_codec_support.h", |
| 22 "media_message_loop.cc", | 24 "media_message_loop.cc", |
| 23 "media_message_loop.h", | 25 "media_message_loop.h", |
| 24 "switching_media_renderer.cc", | 26 "switching_media_renderer.cc", |
| 25 "switching_media_renderer.h", | 27 "switching_media_renderer.h", |
| 26 ] | 28 ] |
| 27 | 29 |
| 28 configs += [ "//chromecast:config" ] | 30 configs += [ "//chromecast:config" ] |
| 29 | 31 |
| 30 deps = [ | 32 deps = [ |
| 31 "//base", | 33 "//base", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 53 sources = [ | 55 sources = [ |
| 54 "cast_media_default.cc", | 56 "cast_media_default.cc", |
| 55 ] | 57 ] |
| 56 | 58 |
| 57 configs += [ "//chromecast:config" ] | 59 configs += [ "//chromecast:config" ] |
| 58 | 60 |
| 59 deps = [ | 61 deps = [ |
| 60 "//chromecast/public", | 62 "//chromecast/public", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| OLD | NEW |