| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("features.gni") | 5 import("features.gni") |
| 6 import("//build/buildflag_header.gni") | 6 import("//build/buildflag_header.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") # For generate_jni(). | 10 import("//build/config/android/rules.gni") # For generate_jni(). |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "android/gvr/gvr_device.h", | 71 "android/gvr/gvr_device.h", |
| 72 "android/gvr/gvr_device_provider.cc", | 72 "android/gvr/gvr_device_provider.cc", |
| 73 "android/gvr/gvr_device_provider.h", | 73 "android/gvr/gvr_device_provider.h", |
| 74 "android/gvr/gvr_gamepad_data_fetcher.cc", | 74 "android/gvr/gvr_gamepad_data_fetcher.cc", |
| 75 "android/gvr/gvr_gamepad_data_fetcher.h", | 75 "android/gvr/gvr_gamepad_data_fetcher.h", |
| 76 "android/gvr/gvr_gamepad_data_provider.h", | 76 "android/gvr/gvr_gamepad_data_provider.h", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 deps += [ | 79 deps += [ |
| 80 "//device/gamepad", | 80 "//device/gamepad", |
| 81 "//device/gamepad/public/cpp:shared_with_blink", |
| 81 "//third_party/WebKit/public:blink_headers", | 82 "//third_party/WebKit/public:blink_headers", |
| 82 ] | 83 ] |
| 83 ldflags = [ "-landroid" ] | 84 ldflags = [ "-landroid" ] |
| 84 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.
a" ] | 85 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.
a" ] |
| 85 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] | 86 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] |
| 86 } | 87 } |
| 87 | 88 |
| 88 if (enable_openvr) { | 89 if (enable_openvr) { |
| 89 deps += [ "//third_party/openvr:openvr" ] | 90 deps += [ "//third_party/openvr:openvr" ] |
| 90 sources += [ | 91 sources += [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 127 |
| 127 public_deps = [ | 128 public_deps = [ |
| 128 "//gpu/ipc/common:interfaces", | 129 "//gpu/ipc/common:interfaces", |
| 129 "//mojo/common:common_custom_types", | 130 "//mojo/common:common_custom_types", |
| 130 ] | 131 ] |
| 131 | 132 |
| 132 export_class_attribute = "DEVICE_VR_EXPORT" | 133 export_class_attribute = "DEVICE_VR_EXPORT" |
| 133 export_define = "DEVICE_VR_IMPLEMENTATION=1" | 134 export_define = "DEVICE_VR_IMPLEMENTATION=1" |
| 134 export_header = "device/vr/vr_export.h" | 135 export_header = "device/vr/vr_export.h" |
| 135 } | 136 } |
| OLD | NEW |