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

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

Issue 2115603002: Use FFmpegVideoDecoder from a UtilityProcess (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error on win Created 4 years 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("//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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "strong_binding_set.h",
85 "test_mojo_media_client.cc", 85 "test_mojo_media_client.cc",
86 "test_mojo_media_client.h", 86 "test_mojo_media_client.h",
87 "utility_mojo_media_client.cc",
88 "utility_mojo_media_client.h",
87 ] 89 ]
88 90
89 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] 91 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ]
90 92
91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
92 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 94 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
93 public_configs = [ ":mojo_media_config" ] 95 public_configs = [ ":mojo_media_config" ]
94 96
95 public_deps = [ 97 public_deps = [
96 "//base", 98 "//base",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 data_deps = [ 185 data_deps = [
184 ":media", 186 ":media",
185 ":pipeline_test_manifest", 187 ":pipeline_test_manifest",
186 ] 188 ]
187 } 189 }
188 190
189 service_manifest("pipeline_test_manifest") { 191 service_manifest("pipeline_test_manifest") {
190 name = "media_pipeline_integration_unittests" 192 name = "media_pipeline_integration_unittests"
191 source = "pipeline_test_manifest.json" 193 source = "pipeline_test_manifest.json"
192 } 194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698