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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 | 8 |
9 # Target naming conventions: | 9 # Target naming conventions: |
10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 "mojo_media_client.h", | 134 "mojo_media_client.h", |
135 "mojo_renderer_service.cc", | 135 "mojo_renderer_service.cc", |
136 "mojo_renderer_service.h", | 136 "mojo_renderer_service.h", |
137 ] | 137 ] |
138 | 138 |
139 deps = [ | 139 deps = [ |
140 ":converters", | 140 ":converters", |
141 ":media_client", | 141 ":media_client", |
142 "//base", | 142 "//base", |
143 "//media", | 143 "//media", |
| 144 "//media:shared_memory_support", |
144 "//media/mojo/interfaces", | 145 "//media/mojo/interfaces", |
145 "//media:shared_memory_support", | |
146 "//mojo/common", | 146 "//mojo/common", |
147 ] | 147 ] |
148 } | 148 } |
149 | 149 |
150 source_set("application") { | 150 source_set("application") { |
151 sources = [ | 151 sources = [ |
152 "mojo_media_application.cc", | 152 "mojo_media_application.cc", |
153 "mojo_media_application.h", | 153 "mojo_media_application.h", |
154 "service_factory_impl.cc", | 154 "service_factory_impl.cc", |
155 "service_factory_impl.h", | 155 "service_factory_impl.h", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 ":media_mojo_unittests", | 248 ":media_mojo_unittests", |
249 ] | 249 ] |
250 | 250 |
251 if (!is_component_build) { | 251 if (!is_component_build) { |
252 deps += [ | 252 deps += [ |
253 ":media_apptests", | 253 ":media_apptests", |
254 ":media_pipeline_integration_apptests", | 254 ":media_pipeline_integration_apptests", |
255 ] | 255 ] |
256 } | 256 } |
257 } | 257 } |
OLD | NEW |