| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("media") { | 8 group("media") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 "//chromecast/media/audio", | 10 "//chromecast/media/audio", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "//chromecast/media/cma/backend", | 52 "//chromecast/media/cma/backend", |
| 53 "//chromecast/media/cma/base", | 53 "//chromecast/media/cma/base", |
| 54 "//chromecast/media/cma/ipc", | 54 "//chromecast/media/cma/ipc", |
| 55 "//chromecast/media/cma/ipc_streamer", | 55 "//chromecast/media/cma/ipc_streamer", |
| 56 "//chromecast/media/cma/pipeline", | 56 "//chromecast/media/cma/pipeline", |
| 57 "//chromecast/public", | 57 "//chromecast/public", |
| 58 "//media", | 58 "//media", |
| 59 "//media/base:test_support", | 59 "//media/base:test_support", |
| 60 "//testing/gmock", | 60 "//testing/gmock", |
| 61 "//testing/gtest", | 61 "//testing/gtest", |
| 62 "//ui/display", |
| 62 "//ui/gfx/geometry", | 63 "//ui/gfx/geometry", |
| 63 ] | 64 ] |
| 64 | 65 |
| 65 if (chromecast_branding == "public") { | 66 if (chromecast_branding == "public") { |
| 66 # Link default libcast_media_1.0 statically not to link dummy one | 67 # Link default libcast_media_1.0 statically not to link dummy one |
| 67 # dynamically for public unittests. | 68 # dynamically for public unittests. |
| 68 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] | 69 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] |
| 69 } | 70 } |
| 70 } | 71 } |
| 71 | 72 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 89 "//testing/gmock", | 90 "//testing/gmock", |
| 90 "//testing/gtest", | 91 "//testing/gtest", |
| 91 ] | 92 ] |
| 92 | 93 |
| 93 if (chromecast_branding == "public") { | 94 if (chromecast_branding == "public") { |
| 94 # Link default libcast_media_1.0 statically not to link dummy one | 95 # Link default libcast_media_1.0 statically not to link dummy one |
| 95 # dynamically for public unittests. | 96 # dynamically for public unittests. |
| 96 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] | 97 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] |
| 97 } | 98 } |
| 98 } | 99 } |
| OLD | NEW |