| 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 | 8 |
| 9 # Target naming conventions: | 9 # Target naming conventions: |
| 10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 sources = [ | 114 sources = [ |
| 115 "mojo_cdm_promise.cc", | 115 "mojo_cdm_promise.cc", |
| 116 "mojo_cdm_promise.h", | 116 "mojo_cdm_promise.h", |
| 117 "mojo_cdm_service.cc", | 117 "mojo_cdm_service.cc", |
| 118 "mojo_cdm_service.h", | 118 "mojo_cdm_service.h", |
| 119 "mojo_cdm_service_context.cc", | 119 "mojo_cdm_service_context.cc", |
| 120 "mojo_cdm_service_context.h", | 120 "mojo_cdm_service_context.h", |
| 121 "mojo_type_trait.h", | 121 "mojo_type_trait.h", |
| 122 ] | 122 ] |
| 123 | 123 |
| 124 if (is_android) { | |
| 125 sources += [ | |
| 126 "mojo_provision_fetcher.cc", | |
| 127 "mojo_provision_fetcher.h", | |
| 128 ] | |
| 129 } | |
| 130 | |
| 131 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 124 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 132 } | 125 } |
| 133 | 126 |
| 134 source_set("renderer_service") { | 127 source_set("renderer_service") { |
| 135 sources = [ | 128 sources = [ |
| 136 "demuxer_stream_provider_shim.cc", | 129 "demuxer_stream_provider_shim.cc", |
| 137 "demuxer_stream_provider_shim.h", | 130 "demuxer_stream_provider_shim.h", |
| 138 "mojo_demuxer_stream_adapter.cc", | 131 "mojo_demuxer_stream_adapter.cc", |
| 139 "mojo_demuxer_stream_adapter.h", | 132 "mojo_demuxer_stream_adapter.h", |
| 140 "mojo_media_client.cc", | 133 "mojo_media_client.cc", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 ":media_mojo_unittests", | 248 ":media_mojo_unittests", |
| 256 ] | 249 ] |
| 257 | 250 |
| 258 if (!is_component_build) { | 251 if (!is_component_build) { |
| 259 deps += [ | 252 deps += [ |
| 260 ":media_apptests", | 253 ":media_apptests", |
| 261 ":media_pipeline_integration_apptests", | 254 ":media_pipeline_integration_apptests", |
| 262 ] | 255 ] |
| 263 } | 256 } |
| 264 } | 257 } |
| OLD | NEW |