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("//testing/test.gni") | 6 import("//testing/test.gni") |
6 | 7 |
7 group("media") { | 8 group("media") { |
8 deps = [ | 9 deps = [ |
9 "//chromecast/media/base", | 10 "//chromecast/media/base", |
10 "//chromecast/media/cdm", | 11 "//chromecast/media/cdm", |
11 "//chromecast/media/cma", | 12 "//chromecast/media/cma", |
12 ] | 13 ] |
13 } | 14 } |
14 | 15 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "//chromecast/base/metrics:test_support", | 51 "//chromecast/base/metrics:test_support", |
51 "//chromecast/public", | 52 "//chromecast/public", |
52 "//media", | 53 "//media", |
53 "//media/base:test_support", | 54 "//media/base:test_support", |
54 "//testing/gmock", | 55 "//testing/gmock", |
55 "//testing/gtest", | 56 "//testing/gtest", |
56 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
57 ] | 58 ] |
58 } | 59 } |
59 | 60 |
| 61 group("libcast_media") { |
| 62 if (use_default_cast_media) { |
| 63 public_deps = [ |
| 64 "//chromecast/media/base:libcast_media_default", |
| 65 ] |
| 66 } else { |
| 67 public_deps = [ |
| 68 "$libcast_media_path:libcast_media_1.0", |
| 69 ] |
| 70 } |
| 71 } |
| 72 |
60 # TODO(gunsch): delete this target once Chromecast M44/earlier is obsolete. | 73 # TODO(gunsch): delete this target once Chromecast M44/earlier is obsolete. |
61 # See: b/21639416 | 74 # See: b/21639416 |
62 shared_library("libffmpegsumo") { | 75 shared_library("libffmpegsumo") { |
63 output_name = "libffmpegsumo" | 76 output_name = "libffmpegsumo" |
64 } | 77 } |
OLD | NEW |