| 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 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//media", | 55 "//media", |
| 56 "//media/mojo:features", | 56 "//media/mojo:features", |
| 57 "//media/mojo/interfaces", | 57 "//media/mojo/interfaces", |
| 58 "//mojo/public/cpp/bindings", | 58 "//mojo/public/cpp/bindings", |
| 59 "//mojo/public/cpp/system", | 59 "//mojo/public/cpp/system", |
| 60 "//services/service_manager/public/interfaces", | 60 "//services/service_manager/public/interfaces", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 "//media/mojo/common", | 64 "//media/mojo/common", |
| 65 "//media/mojo/common:mojo_shared_buffer_video_frame", |
| 65 "//mojo/common", | 66 "//mojo/common", |
| 66 "//services/service_manager/public/cpp", | 67 "//services/service_manager/public/cpp", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 if (is_android) { | 70 if (is_android) { |
| 70 deps += [ | 71 deps += [ |
| 71 "//gpu/ipc/common:common", | 72 "//gpu/ipc/common:common", |
| 72 "//ui/gl:gl", | 73 "//ui/gl:gl", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| 75 } | 76 } |
| OLD | NEW |