| 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 "//chromecast/*", |
| 9 "//content/renderer", | 9 "//content/renderer", |
| 10 | 10 |
| 11 # For AndroidOverlay |
| 12 "//media/gpu:*", |
| 13 |
| 11 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests | 14 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests |
| 12 "//media/mojo:*", | 15 "//media/mojo:*", |
| 13 | 16 |
| 14 # TODO(xhwang): Only allow //media/mojo/services:media_service_unittests | 17 # TODO(xhwang): Only allow //media/mojo/services:media_service_unittests |
| 15 "//media/mojo/services:*", | 18 "//media/mojo/services:*", |
| 16 | 19 |
| 17 "//media/test/*", | 20 "//media/test/*", |
| 18 | 21 |
| 19 # TODO(liberato): can we avoid this? | 22 # TODO(liberato): can we avoid this? |
| 20 "//content/test/*", | 23 "//content/test/*", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "//services/service_manager/public/cpp", | 68 "//services/service_manager/public/cpp", |
| 66 ] | 69 ] |
| 67 | 70 |
| 68 if (is_android) { | 71 if (is_android) { |
| 69 deps += [ | 72 deps += [ |
| 70 "//gpu/ipc/common:common", | 73 "//gpu/ipc/common:common", |
| 71 "//ui/gl:gl", | 74 "//ui/gl:gl", |
| 72 ] | 75 ] |
| 73 } | 76 } |
| 74 } | 77 } |
| OLD | NEW |