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

Side by Side Diff: content/renderer/BUILD.gn

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked as per comments! Created 4 years, 9 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "media/media_interface_provider.cc", 223 "media/media_interface_provider.cc",
224 "media/media_interface_provider.h", 224 "media/media_interface_provider.h",
225 ] 225 ]
226 226
227 deps += [ 227 deps += [
228 "//media/mojo/interfaces", 228 "//media/mojo/interfaces",
229 "//media/mojo/services:proxy", 229 "//media/mojo/services:proxy",
230 ] 230 ]
231 } 231 }
232 232
233 if (enable_webvr) {
234 sources += [
235 "vr/vr_dispatcher.cc",
236 "vr/vr_dispatcher.h",
237 "vr/vr_type_converters.cc",
238 "vr/vr_type_converters.h",
239 ]
240 }
241
242 if (use_seccomp_bpf) { 233 if (use_seccomp_bpf) {
243 defines += [ "USE_SECCOMP_BPF" ] 234 defines += [ "USE_SECCOMP_BPF" ]
244 } 235 }
245 236
246 if (use_ozone) { 237 if (use_ozone) {
247 deps += [ "//ui/ozone" ] 238 deps += [ "//ui/ozone" ]
248 } 239 }
249 } 240 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698