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

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

Issue 592863002: Fix mojom dependencies in media/mojo/services, make gn check pass (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months 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') | mojo/public/interfaces/application/BUILD.gn » ('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 # Things needed by multiple targets, like renderer_impl and renderer_app. 5 # Things needed by multiple targets, like renderer_impl and renderer_app.
6 # GYP version: media/media.gyp:media_mojo_lib 6 # GYP version: media/media.gyp:media_mojo_lib
7 source_set("lib") { 7 source_set("lib") {
8 deps = [ 8 deps = [
9 "//base", 9 "//base",
10 "//media", 10 "//media",
11 "//media/mojo/interfaces", 11 "//media/mojo/interfaces",
12 "//mojo/common", 12 "//mojo/common",
13 "//mojo/environment:chromium", 13 "//mojo/environment:chromium",
14 "//mojo/public/c/system:for_component", 14 "//mojo/public/c/system:for_component",
15 ] 15 ]
16 16
17 sources = [ 17 sources = [
18 "media_type_converters.cc", 18 "media_type_converters.cc",
19 "media_type_converters.h", 19 "media_type_converters.h",
20 ] 20 ]
21 } 21 }
22 22
23 # mojo media::Renderer proxy (to a renderer_app) implementation. 23 # mojo media::Renderer proxy (to a renderer_app) implementation.
24 source_set("renderer_impl_lib") { 24 source_set("renderer_impl_lib") {
25 deps = [ 25 deps = [
26 ":lib",
26 "//base", 27 "//base",
27 "//media", 28 "//media",
29 "//media/mojo/interfaces",
30 "//mojo/public/interfaces/application",
28 "//mojo/common", 31 "//mojo/common",
29 "//mojo/environment:chromium", 32 "//mojo/environment:chromium",
30 "//mojo/public/c/system:for_component", 33 "//mojo/public/c/system:for_component",
31 ":lib", 34 "//mojo/public/cpp/application",
32 ] 35 ]
33 36
34 sources = [ 37 sources = [
35 "mojo_demuxer_stream_impl.cc", 38 "mojo_demuxer_stream_impl.cc",
36 "mojo_demuxer_stream_impl.h", 39 "mojo_demuxer_stream_impl.h",
37 "mojo_renderer_impl.cc", 40 "mojo_renderer_impl.cc",
38 "mojo_renderer_impl.h", 41 "mojo_renderer_impl.h",
39 ] 42 ]
40 } 43 }
41 44
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 # GYP version: media/media.gyp:media_mojo_renderer_apptest 87 # GYP version: media/media.gyp:media_mojo_renderer_apptest
85 # Not a 'test' because this is loaded via mojo_shell as an app. 88 # Not a 'test' because this is loaded via mojo_shell as an app.
86 shared_library("renderer_apptest") { 89 shared_library("renderer_apptest") {
87 testonly = true 90 testonly = true
88 output_name = "media_mojo_renderer_apptest" 91 output_name = "media_mojo_renderer_apptest"
89 92
90 deps = [ 93 deps = [
91 "//base", 94 "//base",
92 "//base/test:test_support", 95 "//base/test:test_support",
93 "//media", 96 "//media",
97 "//media:shared_memory_support",
94 "//media/mojo/interfaces", 98 "//media/mojo/interfaces",
95 "//mojo/common", 99 "//mojo/common",
96 "//mojo/application", 100 "//mojo/application",
97 "//testing/gtest", 101 "//testing/gtest",
98 ":renderer_impl_lib", 102 ":renderer_impl_lib",
99 ":renderer_app", 103 ":renderer_app",
100 ":lib", 104 ":lib",
101 "//mojo/public/c/system:for_shared_library", 105 "//mojo/public/c/system:for_shared_library",
102 ] 106 ]
103 107
(...skipping 10 matching lines...) Expand all
114 ] 118 ]
115 } 119 }
116 120
117 group("tests") { 121 group("tests") {
118 testonly = true 122 testonly = true
119 deps = [ 123 deps = [
120 ":media_mojo_lib_unittests", 124 ":media_mojo_lib_unittests",
121 ":renderer_apptest", 125 ":renderer_apptest",
122 ] 126 ]
123 } 127 }
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | mojo/public/interfaces/application/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698