| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "mojo_cdm_service.cc", | 94 "mojo_cdm_service.cc", |
| 95 "mojo_cdm_service.h", | 95 "mojo_cdm_service.h", |
| 96 "mojo_cdm_service_context.cc", | 96 "mojo_cdm_service_context.cc", |
| 97 "mojo_cdm_service_context.h", | 97 "mojo_cdm_service_context.h", |
| 98 "mojo_type_trait.h", | 98 "mojo_type_trait.h", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 101 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 102 } | 102 } |
| 103 | 103 |
| 104 # MediaRenderer service; without a specific config. | 104 # Renderer service; without a specific config. |
| 105 source_set("renderer_service_generic") { | 105 source_set("renderer_service_generic") { |
| 106 sources = [ | 106 sources = [ |
| 107 "demuxer_stream_provider_shim.cc", | 107 "demuxer_stream_provider_shim.cc", |
| 108 "demuxer_stream_provider_shim.h", | 108 "demuxer_stream_provider_shim.h", |
| 109 "mojo_demuxer_stream_adapter.cc", | 109 "mojo_demuxer_stream_adapter.cc", |
| 110 "mojo_demuxer_stream_adapter.h", | 110 "mojo_demuxer_stream_adapter.h", |
| 111 "mojo_media_client.cc", | 111 "mojo_media_client.cc", |
| 112 "mojo_media_client.h", | 112 "mojo_media_client.h", |
| 113 "mojo_renderer_service.cc", | 113 "mojo_renderer_service.cc", |
| 114 "mojo_renderer_service.h", | 114 "mojo_renderer_service.h", |
| 115 ] | 115 ] |
| 116 | 116 |
| 117 deps = [ | 117 deps = [ |
| 118 ":converters", | 118 ":converters", |
| 119 "//base", | 119 "//base", |
| 120 "//media", | 120 "//media", |
| 121 "//media/mojo/interfaces", | 121 "//media/mojo/interfaces", |
| 122 "//media:shared_memory_support", | 122 "//media:shared_memory_support", |
| 123 "//mojo/common", | 123 "//mojo/common", |
| 124 ] | 124 ] |
| 125 } | 125 } |
| 126 | 126 |
| 127 # MediaRenderer service with a default config. | 127 # Renderer service with a default config. |
| 128 source_set("renderer_service") { | 128 source_set("renderer_service") { |
| 129 sources = [ | 129 sources = [ |
| 130 "default_mojo_media_client.cc", | 130 "default_mojo_media_client.cc", |
| 131 ] | 131 ] |
| 132 | 132 |
| 133 public_configs = [ ":enable_mojo_media_config" ] | 133 public_configs = [ ":enable_mojo_media_config" ] |
| 134 | 134 |
| 135 deps = [ | 135 deps = [ |
| 136 ":renderer_service_generic", | 136 ":renderer_service_generic", |
| 137 "//base", | 137 "//base", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 ":media_mojo_unittests", | 239 ":media_mojo_unittests", |
| 240 ] | 240 ] |
| 241 | 241 |
| 242 if (!is_component_build) { | 242 if (!is_component_build) { |
| 243 deps += [ | 243 deps += [ |
| 244 ":media_apptests", | 244 ":media_apptests", |
| 245 ":media_pipeline_integration_apptests", | 245 ":media_pipeline_integration_apptests", |
| 246 ] | 246 ] |
| 247 } | 247 } |
| 248 } | 248 } |
| OLD | NEW |