| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 } | 46 } |
| 47 } | 47 } |
| 48 | 48 |
| 49 component("services") { | 49 component("services") { |
| 50 output_name = "media_mojo_services" | 50 output_name = "media_mojo_services" |
| 51 | 51 |
| 52 sources = [ | 52 sources = [ |
| 53 "demuxer_stream_provider_shim.cc", | 53 "demuxer_stream_provider_shim.cc", |
| 54 "demuxer_stream_provider_shim.h", | 54 "demuxer_stream_provider_shim.h", |
| 55 "interface_factory_impl.cc", |
| 56 "interface_factory_impl.h", |
| 55 "media_mojo_export.h", | 57 "media_mojo_export.h", |
| 56 "media_service.cc", | 58 "media_service.cc", |
| 57 "media_service.h", | 59 "media_service.h", |
| 58 "media_service_factory.cc", | 60 "media_service_factory.cc", |
| 59 "media_service_factory.h", | 61 "media_service_factory.h", |
| 60 "mojo_audio_decoder_service.cc", | 62 "mojo_audio_decoder_service.cc", |
| 61 "mojo_audio_decoder_service.h", | 63 "mojo_audio_decoder_service.h", |
| 62 "mojo_cdm_allocator.cc", | 64 "mojo_cdm_allocator.cc", |
| 63 "mojo_cdm_allocator.h", | 65 "mojo_cdm_allocator.h", |
| 64 "mojo_cdm_promise.cc", | 66 "mojo_cdm_promise.cc", |
| 65 "mojo_cdm_promise.h", | 67 "mojo_cdm_promise.h", |
| 66 "mojo_cdm_service.cc", | 68 "mojo_cdm_service.cc", |
| 67 "mojo_cdm_service.h", | 69 "mojo_cdm_service.h", |
| 68 "mojo_cdm_service_context.cc", | 70 "mojo_cdm_service_context.cc", |
| 69 "mojo_cdm_service_context.h", | 71 "mojo_cdm_service_context.h", |
| 70 "mojo_decryptor_service.cc", | 72 "mojo_decryptor_service.cc", |
| 71 "mojo_decryptor_service.h", | 73 "mojo_decryptor_service.h", |
| 72 "mojo_demuxer_stream_adapter.cc", | 74 "mojo_demuxer_stream_adapter.cc", |
| 73 "mojo_demuxer_stream_adapter.h", | 75 "mojo_demuxer_stream_adapter.h", |
| 74 "mojo_media_client.cc", | 76 "mojo_media_client.cc", |
| 75 "mojo_media_client.h", | 77 "mojo_media_client.h", |
| 76 "mojo_renderer_service.cc", | 78 "mojo_renderer_service.cc", |
| 77 "mojo_renderer_service.h", | 79 "mojo_renderer_service.h", |
| 78 "mojo_video_decoder_service.cc", | 80 "mojo_video_decoder_service.cc", |
| 79 "mojo_video_decoder_service.h", | 81 "mojo_video_decoder_service.h", |
| 80 "service_factory_impl.cc", | |
| 81 "service_factory_impl.h", | |
| 82 "test_mojo_media_client.cc", | 82 "test_mojo_media_client.cc", |
| 83 "test_mojo_media_client.h", | 83 "test_mojo_media_client.h", |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] | 86 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] |
| 87 | 87 |
| 88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 89 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 89 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 90 public_configs = [ ":mojo_media_config" ] | 90 public_configs = [ ":mojo_media_config" ] |
| 91 | 91 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ":media", | 184 ":media", |
| 185 ":pipeline_test_manifest", | 185 ":pipeline_test_manifest", |
| 186 ] | 186 ] |
| 187 } | 187 } |
| 188 | 188 |
| 189 service_manifest("pipeline_test_manifest") { | 189 service_manifest("pipeline_test_manifest") { |
| 190 name = "media_pipeline_integration_unittests" | 190 name = "media_pipeline_integration_unittests" |
| 191 type = "exe" | 191 type = "exe" |
| 192 source = "pipeline_test_manifest.json" | 192 source = "pipeline_test_manifest.json" |
| 193 } | 193 } |
| OLD | NEW |