| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "//base", | 137 "//base", |
| 138 "//media", | 138 "//media", |
| 139 "//media:shared_memory_support", | 139 "//media:shared_memory_support", |
| 140 ] | 140 ] |
| 141 } | 141 } |
| 142 | 142 |
| 143 source_set("application") { | 143 source_set("application") { |
| 144 sources = [ | 144 sources = [ |
| 145 "mojo_media_application.cc", | 145 "mojo_media_application.cc", |
| 146 "mojo_media_application.h", | 146 "mojo_media_application.h", |
| 147 "service_factory_impl.cc", |
| 148 "service_factory_impl.h", |
| 147 ] | 149 ] |
| 148 | 150 |
| 149 public_configs = [ ":enable_mojo_media_config" ] | 151 public_configs = [ ":enable_mojo_media_config" ] |
| 150 | 152 |
| 151 deps = [ | 153 deps = [ |
| 152 ":cdm_service", | 154 ":cdm_service", |
| 153 ":renderer_service", | 155 ":renderer_service", |
| 154 "//base", | 156 "//base", |
| 155 "//mojo/application/public/cpp", | 157 "//mojo/application/public/cpp", |
| 156 "//third_party/mojo/src/mojo/public/c/system:for_component", | 158 "//third_party/mojo/src/mojo/public/c/system:for_component", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 ":media_mojo_unittests", | 239 ":media_mojo_unittests", |
| 238 ] | 240 ] |
| 239 | 241 |
| 240 if (!is_component_build) { | 242 if (!is_component_build) { |
| 241 deps += [ | 243 deps += [ |
| 242 ":media_apptests", | 244 ":media_apptests", |
| 243 ":media_pipeline_integration_apptests", | 245 ":media_pipeline_integration_apptests", |
| 244 ] | 246 ] |
| 245 } | 247 } |
| 246 } | 248 } |
| OLD | NEW |