| 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 "//content/renderer", | 8 "//content/renderer", |
| 9 | 9 |
| 10 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests |
| 11 "//media/mojo:*", |
| 12 |
| 10 # TODO(xhwang): Only allow //media/mojo/services:media_mojo_shell_unittests | 13 # TODO(xhwang): Only allow //media/mojo/services:media_mojo_shell_unittests |
| 11 "//media/mojo/services:*", | 14 "//media/mojo/services:*", |
| 15 |
| 12 "//media/test/*", | 16 "//media/test/*", |
| 13 ] | 17 ] |
| 14 | 18 |
| 15 sources = [ | 19 sources = [ |
| 16 "mojo_audio_decoder.cc", | 20 "mojo_audio_decoder.cc", |
| 17 "mojo_audio_decoder.h", | 21 "mojo_audio_decoder.h", |
| 18 "mojo_cdm.cc", | 22 "mojo_cdm.cc", |
| 19 "mojo_cdm.h", | 23 "mojo_cdm.h", |
| 20 "mojo_cdm_factory.cc", | 24 "mojo_cdm_factory.cc", |
| 21 "mojo_cdm_factory.h", | 25 "mojo_cdm_factory.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 43 "//mojo/public/cpp/system", | 47 "//mojo/public/cpp/system", |
| 44 "//services/shell/public/interfaces", | 48 "//services/shell/public/interfaces", |
| 45 ] | 49 ] |
| 46 | 50 |
| 47 deps = [ | 51 deps = [ |
| 48 "//media/mojo/common", | 52 "//media/mojo/common", |
| 49 "//mojo/common", | 53 "//mojo/common", |
| 50 "//services/shell/public/cpp", | 54 "//services/shell/public/cpp", |
| 51 ] | 55 ] |
| 52 } | 56 } |
| OLD | NEW |