| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 | 9 |
| 10 # Target naming conventions: | 10 # Target naming conventions: |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "mojo_demuxer_stream_adapter.h", | 106 "mojo_demuxer_stream_adapter.h", |
| 107 "mojo_media_application.cc", | 107 "mojo_media_application.cc", |
| 108 "mojo_media_application.h", | 108 "mojo_media_application.h", |
| 109 "mojo_media_application_factory.cc", | 109 "mojo_media_application_factory.cc", |
| 110 "mojo_media_application_factory.h", | 110 "mojo_media_application_factory.h", |
| 111 "mojo_media_client.cc", | 111 "mojo_media_client.cc", |
| 112 "mojo_media_client.h", | 112 "mojo_media_client.h", |
| 113 "mojo_renderer_service.cc", | 113 "mojo_renderer_service.cc", |
| 114 "mojo_renderer_service.h", | 114 "mojo_renderer_service.h", |
| 115 "mojo_type_trait.h", | 115 "mojo_type_trait.h", |
| 116 "mojo_video_decoder_service.cc", |
| 117 "mojo_video_decoder_service.h", |
| 116 "service_factory_impl.cc", | 118 "service_factory_impl.cc", |
| 117 "service_factory_impl.h", | 119 "service_factory_impl.h", |
| 118 ] | 120 ] |
| 119 | 121 |
| 120 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] | 122 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] |
| 121 | 123 |
| 122 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 123 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 125 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 124 public_configs = [ ":mojo_media_config" ] | 126 public_configs = [ ":mojo_media_config" ] |
| 125 | 127 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 ":media", | 232 ":media", |
| 231 ":pipeline_test_manifest", | 233 ":pipeline_test_manifest", |
| 232 ] | 234 ] |
| 233 } | 235 } |
| 234 | 236 |
| 235 mojo_application_manifest("pipeline_test_manifest") { | 237 mojo_application_manifest("pipeline_test_manifest") { |
| 236 application_name = "media_pipeline_integration_unittests" | 238 application_name = "media_pipeline_integration_unittests" |
| 237 type = "exe" | 239 type = "exe" |
| 238 source = "pipeline_test_manifest.json" | 240 source = "pipeline_test_manifest.json" |
| 239 } | 241 } |
| OLD | NEW |