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

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

Issue 2230583002: Add MediaPlayerRenderer/MediaPlayerRendererClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Chris' comment Created 4 years, 4 months 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/shell/public/cpp/service.gni") 6 import("//services/shell/public/cpp/service.gni")
7 import("//services/shell/public/service_manifest.gni") 7 import("//services/shell/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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 "//media/mojo/interfaces", 88 "//media/mojo/interfaces",
89 "//mojo/public/cpp/bindings", 89 "//mojo/public/cpp/bindings",
90 "//mojo/public/cpp/system", 90 "//mojo/public/cpp/system",
91 "//services/shell/public/cpp", 91 "//services/shell/public/cpp",
92 "//url", 92 "//url",
93 ] 93 ]
94 94
95 deps = [ 95 deps = [
96 "//media:cdm_api", 96 "//media:cdm_api",
97 "//media:shared_memory_support", 97 "//media:shared_memory_support",
98 "//media/base",
98 "//media/mojo/common", 99 "//media/mojo/common",
99 "//mojo/common", 100 "//mojo/common",
100 "//services/shell/public/interfaces", 101 "//services/shell/public/interfaces",
101 ] 102 ]
102 103
103 if (is_android) { 104 if (is_android) {
104 sources += [ 105 sources += [
105 "mojo_provision_fetcher.cc", 106 "mojo_provision_fetcher.cc",
106 "mojo_provision_fetcher.h", 107 "mojo_provision_fetcher.h",
107 ] 108 ]
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ":media", 196 ":media",
196 ":pipeline_test_manifest", 197 ":pipeline_test_manifest",
197 ] 198 ]
198 } 199 }
199 200
200 service_manifest("pipeline_test_manifest") { 201 service_manifest("pipeline_test_manifest") {
201 name = "media_pipeline_integration_unittests" 202 name = "media_pipeline_integration_unittests"
202 type = "exe" 203 type = "exe"
203 source = "pipeline_test_manifest.json" 204 source = "pipeline_test_manifest.json"
204 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698