| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ] | 42 ] |
| 43 | 43 |
| 44 deps = [ | 44 deps = [ |
| 45 ":media", | 45 ":media", |
| 46 "//base", | 46 "//base", |
| 47 "//base:i18n", | 47 "//base:i18n", |
| 48 "//base/test:test_support", | 48 "//base/test:test_support", |
| 49 "//chromecast/base", | 49 "//chromecast/base", |
| 50 "//chromecast/base/metrics:test_support", | 50 "//chromecast/base/metrics:test_support", |
| 51 "//chromecast/media/audio", | 51 "//chromecast/media/audio", |
| 52 "//chromecast/media/base:message_loop", | |
| 53 "//chromecast/media/cma/backend", | 52 "//chromecast/media/cma/backend", |
| 54 "//chromecast/media/cma/base", | 53 "//chromecast/media/cma/base", |
| 55 "//chromecast/media/cma/ipc", | 54 "//chromecast/media/cma/ipc", |
| 56 "//chromecast/media/cma/ipc_streamer", | 55 "//chromecast/media/cma/ipc_streamer", |
| 57 "//chromecast/media/cma/pipeline", | 56 "//chromecast/media/cma/pipeline", |
| 58 "//chromecast/public", | 57 "//chromecast/public", |
| 59 "//media", | 58 "//media", |
| 60 "//media/base:test_support", | 59 "//media/base:test_support", |
| 61 "//testing/gmock", | 60 "//testing/gmock", |
| 62 "//testing/gtest", | 61 "//testing/gtest", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 90 "//testing/gmock", | 89 "//testing/gmock", |
| 91 "//testing/gtest", | 90 "//testing/gtest", |
| 92 ] | 91 ] |
| 93 | 92 |
| 94 if (chromecast_branding == "public") { | 93 if (chromecast_branding == "public") { |
| 95 # Link default libcast_media_1.0 statically not to link dummy one | 94 # Link default libcast_media_1.0 statically not to link dummy one |
| 96 # dynamically for public unittests. | 95 # dynamically for public unittests. |
| 97 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] | 96 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] |
| 98 } | 97 } |
| 99 } | 98 } |
| OLD | NEW |