| 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("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 config("mojo_media_config") { | 10 config("mojo_media_config") { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 public_deps = [ | 52 public_deps = [ |
| 53 ":lib", | 53 ":lib", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 # TODO(xhwang): Add this intermediate target because ServiceTest doesn't support | 57 # TODO(xhwang): Add this intermediate target because ServiceTest doesn't support |
| 58 # services that depend on shared libraries in component build. | 58 # services that depend on shared libraries in component build. |
| 59 # See http://crbug.com/670094 | 59 # See http://crbug.com/670094 |
| 60 source_set("lib") { | 60 source_set("lib") { |
| 61 sources = [ | 61 sources = [ |
| 62 "demuxer_stream_provider_shim.cc", | |
| 63 "demuxer_stream_provider_shim.h", | |
| 64 "gpu_mojo_media_client.cc", | 62 "gpu_mojo_media_client.cc", |
| 65 "gpu_mojo_media_client.h", | 63 "gpu_mojo_media_client.h", |
| 66 "interface_factory_impl.cc", | 64 "interface_factory_impl.cc", |
| 67 "interface_factory_impl.h", | 65 "interface_factory_impl.h", |
| 68 "media_mojo_export.h", | 66 "media_mojo_export.h", |
| 67 "media_resource_shim.cc", |
| 68 "media_resource_shim.h", |
| 69 "media_service.cc", | 69 "media_service.cc", |
| 70 "media_service.h", | 70 "media_service.h", |
| 71 "media_service_factory.cc", | 71 "media_service_factory.cc", |
| 72 "media_service_factory.h", | 72 "media_service_factory.h", |
| 73 "mojo_audio_decoder_service.cc", | 73 "mojo_audio_decoder_service.cc", |
| 74 "mojo_audio_decoder_service.h", | 74 "mojo_audio_decoder_service.h", |
| 75 "mojo_cdm_allocator.cc", | 75 "mojo_cdm_allocator.cc", |
| 76 "mojo_cdm_allocator.h", | 76 "mojo_cdm_allocator.h", |
| 77 "mojo_cdm_promise.cc", | 77 "mojo_cdm_promise.cc", |
| 78 "mojo_cdm_promise.h", | 78 "mojo_cdm_promise.h", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 data_deps = [ | 208 data_deps = [ |
| 209 ":media", | 209 ":media", |
| 210 ":pipeline_test_manifest", | 210 ":pipeline_test_manifest", |
| 211 ] | 211 ] |
| 212 } | 212 } |
| 213 | 213 |
| 214 service_manifest("pipeline_test_manifest") { | 214 service_manifest("pipeline_test_manifest") { |
| 215 name = "media_pipeline_integration_unittests" | 215 name = "media_pipeline_integration_unittests" |
| 216 source = "pipeline_test_manifest.json" | 216 source = "pipeline_test_manifest.json" |
| 217 } | 217 } |
| OLD | NEW |