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/services:media_mojo_shell_unittests | 10 # TODO(xhwang): Only allow //media/mojo/services:media_mojo_shell_unittests |
sandersd (OOO until July 31)
2016/06/16 18:10:06
Comment is now on the wrong line.
xhwang
2016/06/17 06:59:00
Done.
| |
11 "//media/mojo:media_mojo_unittests", | |
11 "//media/mojo/services:*", | 12 "//media/mojo/services:*", |
12 "//media/test/*", | 13 "//media/test/*", |
13 ] | 14 ] |
14 | 15 |
15 sources = [ | 16 sources = [ |
16 "mojo_audio_decoder.cc", | 17 "mojo_audio_decoder.cc", |
17 "mojo_audio_decoder.h", | 18 "mojo_audio_decoder.h", |
18 "mojo_cdm.cc", | 19 "mojo_cdm.cc", |
19 "mojo_cdm.h", | 20 "mojo_cdm.h", |
20 "mojo_cdm_factory.cc", | 21 "mojo_cdm_factory.cc", |
(...skipping 22 matching lines...) Expand all Loading... | |
43 "//mojo/public/cpp/system", | 44 "//mojo/public/cpp/system", |
44 "//services/shell/public/interfaces", | 45 "//services/shell/public/interfaces", |
45 ] | 46 ] |
46 | 47 |
47 deps = [ | 48 deps = [ |
48 "//media/mojo/common", | 49 "//media/mojo/common", |
49 "//mojo/common", | 50 "//mojo/common", |
50 "//services/shell/public/cpp", | 51 "//services/shell/public/cpp", |
51 ] | 52 ] |
52 } | 53 } |
OLD | NEW |