OLD | NEW |
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 Loading... |
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 } | |
211 } | 202 } |
OLD | NEW |