| 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/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//services/service_manager/public/tools/test/service_test.gni") | 9 import("//services/service_manager/public/tools/test/service_test.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "mojo_demuxer_stream_adapter.cc", | 92 "mojo_demuxer_stream_adapter.cc", |
| 93 "mojo_demuxer_stream_adapter.h", | 93 "mojo_demuxer_stream_adapter.h", |
| 94 "mojo_media_client.cc", | 94 "mojo_media_client.cc", |
| 95 "mojo_media_client.h", | 95 "mojo_media_client.h", |
| 96 "mojo_provision_fetcher.cc", | 96 "mojo_provision_fetcher.cc", |
| 97 "mojo_provision_fetcher.h", | 97 "mojo_provision_fetcher.h", |
| 98 "mojo_renderer_service.cc", | 98 "mojo_renderer_service.cc", |
| 99 "mojo_renderer_service.h", | 99 "mojo_renderer_service.h", |
| 100 "mojo_video_decoder_service.cc", | 100 "mojo_video_decoder_service.cc", |
| 101 "mojo_video_decoder_service.h", | 101 "mojo_video_decoder_service.h", |
| 102 "mojo_video_renderer_sink_adapter.cc", |
| 103 "mojo_video_renderer_sink_adapter.h", |
| 102 "strong_binding_set.h", | 104 "strong_binding_set.h", |
| 103 "test_mojo_media_client.cc", | 105 "test_mojo_media_client.cc", |
| 104 "test_mojo_media_client.h", | 106 "test_mojo_media_client.h", |
| 105 "utility_mojo_media_client.cc", | 107 "utility_mojo_media_client.cc", |
| 106 "utility_mojo_media_client.h", | 108 "utility_mojo_media_client.h", |
| 107 ] | 109 ] |
| 108 | 110 |
| 109 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] | 111 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] |
| 110 | 112 |
| 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 | 226 |
| 225 catalog("media_service_unittests_catalog") { | 227 catalog("media_service_unittests_catalog") { |
| 226 embedded_services = [ ":test_manifest" ] | 228 embedded_services = [ ":test_manifest" ] |
| 227 standalone_services = [ ":media_manifest" ] | 229 standalone_services = [ ":media_manifest" ] |
| 228 } | 230 } |
| 229 | 231 |
| 230 catalog("media_pipeline_integration_unittests_catalog") { | 232 catalog("media_pipeline_integration_unittests_catalog") { |
| 231 embedded_services = [ ":pipeline_test_manifest" ] | 233 embedded_services = [ ":pipeline_test_manifest" ] |
| 232 standalone_services = [ ":media_manifest" ] | 234 standalone_services = [ ":media_manifest" ] |
| 233 } | 235 } |
| OLD | NEW |