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