| 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 "strong_binding_set.h", | |
| 103 "test_mojo_media_client.cc", | 102 "test_mojo_media_client.cc", |
| 104 "test_mojo_media_client.h", | 103 "test_mojo_media_client.h", |
| 105 ] | 104 ] |
| 106 | 105 |
| 107 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] | 106 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] |
| 108 | 107 |
| 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 108 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 110 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 109 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 111 public_configs = [ ":mojo_media_config" ] | 110 public_configs = [ ":mojo_media_config" ] |
| 112 | 111 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 221 |
| 223 catalog("media_service_unittests_catalog") { | 222 catalog("media_service_unittests_catalog") { |
| 224 embedded_services = [ ":test_manifest" ] | 223 embedded_services = [ ":test_manifest" ] |
| 225 standalone_services = [ ":media_manifest" ] | 224 standalone_services = [ ":media_manifest" ] |
| 226 } | 225 } |
| 227 | 226 |
| 228 catalog("media_pipeline_integration_unittests_catalog") { | 227 catalog("media_pipeline_integration_unittests_catalog") { |
| 229 embedded_services = [ ":pipeline_test_manifest" ] | 228 embedded_services = [ ":pipeline_test_manifest" ] |
| 230 standalone_services = [ ":media_manifest" ] | 229 standalone_services = [ ":media_manifest" ] |
| 231 } | 230 } |
| OLD | NEW |