Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Side by Side Diff: media/mojo/services/BUILD.gn

Issue 1466633002: media: Add ProvisionFetcher mojo interface and implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
124 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 131 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
125 } 132 }
126 133
127 source_set("renderer_service") { 134 source_set("renderer_service") {
128 sources = [ 135 sources = [
129 "demuxer_stream_provider_shim.cc", 136 "demuxer_stream_provider_shim.cc",
130 "demuxer_stream_provider_shim.h", 137 "demuxer_stream_provider_shim.h",
131 "mojo_demuxer_stream_adapter.cc", 138 "mojo_demuxer_stream_adapter.cc",
132 "mojo_demuxer_stream_adapter.h", 139 "mojo_demuxer_stream_adapter.h",
133 "mojo_media_client.cc", 140 "mojo_media_client.cc",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 ":media_mojo_unittests", 255 ":media_mojo_unittests",
249 ] 256 ]
250 257
251 if (!is_component_build) { 258 if (!is_component_build) {
252 deps += [ 259 deps += [
253 ":media_apptests", 260 ":media_apptests",
254 ":media_pipeline_integration_apptests", 261 ":media_pipeline_integration_apptests",
255 ] 262 ]
256 } 263 }
257 } 264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698