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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 deps += [ "//media/mojo/services:application" ] | 496 deps += [ "//media/mojo/services:application" ] |
497 } | 497 } |
498 | 498 |
499 if (enable_webvr) { | 499 if (enable_webvr) { |
500 sources += [ | 500 sources += [ |
501 "vr/vr_device.cc", | 501 "vr/vr_device.cc", |
502 "vr/vr_device.h", | 502 "vr/vr_device.h", |
503 "vr/vr_device_manager.cc", | 503 "vr/vr_device_manager.cc", |
504 "vr/vr_device_manager.h", | 504 "vr/vr_device_manager.h", |
505 "vr/vr_device_provider.h", | 505 "vr/vr_device_provider.h", |
506 "vr/vr_transform_util.cc", | |
507 "vr/vr_transform_util.h", | |
508 ] | |
509 } | |
510 | |
511 if (enable_webvr && is_android) { | |
512 sources += [ | |
513 "vr/android/cardboard/cardboard_vr_device.cc", | |
514 "vr/android/cardboard/cardboard_vr_device.h", | |
515 "vr/android/cardboard/cardboard_vr_device_provider.cc", | |
516 "vr/android/cardboard/cardboard_vr_device_provider.h", | |
517 ] | 506 ] |
518 } | 507 } |
519 } | 508 } |
OLD | NEW |