| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "mojo_demuxer_stream_adapter.cc", | 74 "mojo_demuxer_stream_adapter.cc", |
| 75 "mojo_demuxer_stream_adapter.h", | 75 "mojo_demuxer_stream_adapter.h", |
| 76 "mojo_media_client.cc", | 76 "mojo_media_client.cc", |
| 77 "mojo_media_client.h", | 77 "mojo_media_client.h", |
| 78 "mojo_provision_fetcher.cc", | 78 "mojo_provision_fetcher.cc", |
| 79 "mojo_provision_fetcher.h", | 79 "mojo_provision_fetcher.h", |
| 80 "mojo_renderer_service.cc", | 80 "mojo_renderer_service.cc", |
| 81 "mojo_renderer_service.h", | 81 "mojo_renderer_service.h", |
| 82 "mojo_video_decoder_service.cc", | 82 "mojo_video_decoder_service.cc", |
| 83 "mojo_video_decoder_service.h", | 83 "mojo_video_decoder_service.h", |
| 84 "strong_binding_set.h", |
| 84 "test_mojo_media_client.cc", | 85 "test_mojo_media_client.cc", |
| 85 "test_mojo_media_client.h", | 86 "test_mojo_media_client.h", |
| 86 ] | 87 ] |
| 87 | 88 |
| 88 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] | 89 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] |
| 89 | 90 |
| 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 91 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 92 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 92 public_configs = [ ":mojo_media_config" ] | 93 public_configs = [ ":mojo_media_config" ] |
| 93 | 94 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 data_deps = [ | 183 data_deps = [ |
| 183 ":media", | 184 ":media", |
| 184 ":pipeline_test_manifest", | 185 ":pipeline_test_manifest", |
| 185 ] | 186 ] |
| 186 } | 187 } |
| 187 | 188 |
| 188 service_manifest("pipeline_test_manifest") { | 189 service_manifest("pipeline_test_manifest") { |
| 189 name = "media_pipeline_integration_unittests" | 190 name = "media_pipeline_integration_unittests" |
| 190 source = "pipeline_test_manifest.json" | 191 source = "pipeline_test_manifest.json" |
| 191 } | 192 } |
| OLD | NEW |