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 config("config") { | 7 config("config") { |
8 defines = [] | 8 defines = [] |
9 | 9 |
10 if (use_playready) { | 10 if (use_playready) { |
11 defines += [ "PLAYREADY_CDM_AVAILABLE" ] | 11 defines += [ "PLAYREADY_CDM_AVAILABLE" ] |
12 } | 12 } |
13 } | 13 } |
14 | 14 |
15 component("chromecast") { | 15 component("chromecast") { |
16 deps = [ | 16 deps = [ |
17 "//chromecast/base", | 17 "//chromecast/base", |
18 "//chromecast/base/metrics", | 18 "//chromecast/base/metrics", |
| 19 "//chromecast/crash", |
19 "//chromecast/media", | 20 "//chromecast/media", |
20 ] | 21 ] |
21 } | 22 } |
| 23 |
| 24 group("chromecast_unittests") { |
| 25 testonly = true |
| 26 |
| 27 deps = [ |
| 28 "//chromecast/base:cast_base_unittests", |
| 29 "//chromecast/crash:cast_crash_unittests", |
| 30 "//chromecast/media:cast_media_unittests", |
| 31 ] |
| 32 } |
OLD | NEW |