Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: media/mojo/services/BUILD.gn

Issue 783003002: Introduce media::RendererFactory interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/media.gyp ('k') | media/mojo/services/mojo_renderer_factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | media/mojo/services/mojo_renderer_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698