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 import("//build/config/crypto.gni") | |
gunsch
2015/04/21 02:09:43
nit: blank line above
prashantv
2015/04/21 18:21:36
Done.
| |
5 import("//chromecast/chromecast.gni") | |
6 | |
7 component("base") { | |
8 sources = [ | |
9 "decrypt_context.cc", | |
10 "decrypt_context.h", | |
11 "decrypt_context_clearkey.cc", | |
12 "decrypt_context_clearkey.h", | |
13 "key_systems_common.cc", | |
14 "key_systems_common.h", | |
15 "media_caps.cc", | |
16 "media_caps.h", | |
17 "switching_media_renderer.cc", | |
18 "switching_media_renderer.h", | |
19 ] | |
20 | |
21 deps = [ | |
22 "//base", | |
23 "//crypto", | |
24 "//crypto:platform", | |
25 "//third_party/widevine/cdm:version_h", | |
26 ] | |
27 | |
28 configs += [ "//chromecast:config" ] | |
29 | |
30 if (chromecast_branding == "Chrome") { | |
31 deps += [ | |
32 # TODO(gyp): add dependency on internal/chromecast_internal:media_base_int ernal | |
33 ] | |
34 } else { | |
35 sources += [ "key_systems_common_simple.cc" ] | |
36 } | |
37 } | |
OLD | NEW |