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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 | 500 |
501 if (enable_webvr) { | 501 if (enable_webvr) { |
502 sources += [ | 502 sources += [ |
503 "vr/vr_device.cc", | 503 "vr/vr_device.cc", |
504 "vr/vr_device.h", | 504 "vr/vr_device.h", |
505 "vr/vr_device_manager.cc", | 505 "vr/vr_device_manager.cc", |
506 "vr/vr_device_manager.h", | 506 "vr/vr_device_manager.h", |
507 "vr/vr_device_provider.h", | 507 "vr/vr_device_provider.h", |
508 ] | 508 ] |
509 } | 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 ] |
| 518 } |
510 } | 519 } |
OLD | NEW |