| 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 # Target naming conventions: | 7 # Target naming conventions: |
| 8 # - converters: C++/Mojo type converters. | 8 # - converters: C++/Mojo type converters. |
| 9 # - proxy: C++ implementations supported by mojo services. | 9 # - proxy: C++ implementations supported by mojo services. |
| 10 # - service: Mojo interface implementations. | 10 # - service: Mojo interface implementations. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "//mojo/services/public/interfaces/geometry", | 28 "//mojo/services/public/interfaces/geometry", |
| 29 "//skia", | 29 "//skia", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 # media::Renderer implementation using mojo::MediaRenderer. | 33 # media::Renderer implementation using mojo::MediaRenderer. |
| 34 source_set("renderer_proxy") { | 34 source_set("renderer_proxy") { |
| 35 sources = [ | 35 sources = [ |
| 36 "mojo_demuxer_stream_impl.cc", | 36 "mojo_demuxer_stream_impl.cc", |
| 37 "mojo_demuxer_stream_impl.h", | 37 "mojo_demuxer_stream_impl.h", |
| 38 "mojo_renderer_factory.cc", |
| 39 "mojo_renderer_factory.h", |
| 38 "mojo_renderer_impl.cc", | 40 "mojo_renderer_impl.cc", |
| 39 "mojo_renderer_impl.h", | 41 "mojo_renderer_impl.h", |
| 40 ] | 42 ] |
| 41 | 43 |
| 42 deps = [ | 44 deps = [ |
| 43 ":converters", | 45 ":converters", |
| 44 "//base", | 46 "//base", |
| 45 "//media", | 47 "//media", |
| 46 "//media/mojo/interfaces", | 48 "//media/mojo/interfaces", |
| 47 "//mojo/common", | 49 "//mojo/common", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 ] | 140 ] |
| 139 } | 141 } |
| 140 | 142 |
| 141 group("tests") { | 143 group("tests") { |
| 142 testonly = true | 144 testonly = true |
| 143 deps = [ | 145 deps = [ |
| 144 ":media_mojo_unittests", | 146 ":media_mojo_unittests", |
| 145 ":media_test", | 147 ":media_test", |
| 146 ] | 148 ] |
| 147 } | 149 } |
| OLD | NEW |