| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "gpu_mojo_media_client.h", | 65 "gpu_mojo_media_client.h", |
| 66 "interface_factory_impl.cc", | 66 "interface_factory_impl.cc", |
| 67 "interface_factory_impl.h", | 67 "interface_factory_impl.h", |
| 68 "media_mojo_export.h", | 68 "media_mojo_export.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_audio_renderer_sink_adapter.cc", |
| 76 "mojo_audio_renderer_sink_adapter.h", |
| 75 "mojo_cdm_allocator.cc", | 77 "mojo_cdm_allocator.cc", |
| 76 "mojo_cdm_allocator.h", | 78 "mojo_cdm_allocator.h", |
| 77 "mojo_cdm_promise.cc", | 79 "mojo_cdm_promise.cc", |
| 78 "mojo_cdm_promise.h", | 80 "mojo_cdm_promise.h", |
| 79 "mojo_cdm_service.cc", | 81 "mojo_cdm_service.cc", |
| 80 "mojo_cdm_service.h", | 82 "mojo_cdm_service.h", |
| 81 "mojo_cdm_service_context.cc", | 83 "mojo_cdm_service_context.cc", |
| 82 "mojo_cdm_service_context.h", | 84 "mojo_cdm_service_context.h", |
| 83 "mojo_decryptor_service.cc", | 85 "mojo_decryptor_service.cc", |
| 84 "mojo_decryptor_service.h", | 86 "mojo_decryptor_service.h", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 data_deps = [ | 214 data_deps = [ |
| 213 ":media", | 215 ":media", |
| 214 ":pipeline_test_manifest", | 216 ":pipeline_test_manifest", |
| 215 ] | 217 ] |
| 216 } | 218 } |
| 217 | 219 |
| 218 service_manifest("pipeline_test_manifest") { | 220 service_manifest("pipeline_test_manifest") { |
| 219 name = "media_pipeline_integration_unittests" | 221 name = "media_pipeline_integration_unittests" |
| 220 source = "pipeline_test_manifest.json" | 222 source = "pipeline_test_manifest.json" |
| 221 } | 223 } |
| OLD | NEW |