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

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

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed one cardboard reference Created 5 years, 6 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
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 ] 192 ]
193 } 193 }
194 194
195 if (enable_media_mojo_renderer) { 195 if (enable_media_mojo_renderer) {
196 sources += [ 196 sources += [
197 "media/content_media_service_provider.cc", 197 "media/content_media_service_provider.cc",
198 "media/content_media_service_provider.h", 198 "media/content_media_service_provider.h",
199 ] 199 ]
200 deps += [ "//media/mojo/services:proxy" ] 200 deps += [ "//media/mojo/services:proxy" ]
201 } 201 }
202
203 if (enable_webvr) {
204 sources += [
205 "vr/vr_dispatcher.cc",
206 "vr/vr_dispatcher.h",
207 "vr/vr_type_converters.cc",
208 "vr/vr_type_converters.h",
209 ]
210 }
202 } 211 }
OLDNEW
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698