OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Implementations of media C++ interfaces using corresponding mojo services. | 5 # Implementations of media C++ interfaces using corresponding mojo services. |
6 source_set("clients") { | 6 source_set("clients") { |
7 visibility = [ | 7 visibility = [ |
| 8 "//chromecast/*", |
8 "//content/renderer", | 9 "//content/renderer", |
9 | 10 |
10 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests | 11 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests |
11 "//media/mojo:*", | 12 "//media/mojo:*", |
12 | 13 |
13 # TODO(xhwang): Only allow //media/mojo/services:media_mojo_shell_unittests | 14 # TODO(xhwang): Only allow //media/mojo/services:media_mojo_shell_unittests |
14 "//media/mojo/services:*", | 15 "//media/mojo/services:*", |
15 | 16 |
16 "//media/test/*", | 17 "//media/test/*", |
17 ] | 18 ] |
(...skipping 29 matching lines...) Expand all Loading... |
47 "//mojo/public/cpp/system", | 48 "//mojo/public/cpp/system", |
48 "//services/shell/public/interfaces", | 49 "//services/shell/public/interfaces", |
49 ] | 50 ] |
50 | 51 |
51 deps = [ | 52 deps = [ |
52 "//media/mojo/common", | 53 "//media/mojo/common", |
53 "//mojo/common", | 54 "//mojo/common", |
54 "//services/shell/public/cpp", | 55 "//services/shell/public/cpp", |
55 ] | 56 ] |
56 } | 57 } |
OLD | NEW |