| 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("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 assert(enable_webvr) | 9 assert(enable_webvr) |
| 10 | 10 |
| 11 if (current_cpu == "arm" || current_cpu == "arm64") { | 11 if (current_cpu == "arm" || current_cpu == "arm64") { |
| 12 static_library("vr_common") { | 12 static_library("vr_common") { |
| 13 defines = [] | 13 defines = [] |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "android_ui_gesture_target.cc", |
| 17 "android_ui_gesture_target.h", |
| 16 "animation.cc", | 18 "animation.cc", |
| 17 "animation.h", | 19 "animation.h", |
| 18 "easing.cc", | 20 "easing.cc", |
| 19 "easing.h", | 21 "easing.h", |
| 20 "non_presenting_gvr_delegate.cc", | 22 "non_presenting_gvr_delegate.cc", |
| 21 "non_presenting_gvr_delegate.h", | 23 "non_presenting_gvr_delegate.h", |
| 22 "ui_elements.cc", | 24 "ui_elements.cc", |
| 23 "ui_elements.h", | 25 "ui_elements.h", |
| 24 "ui_interface.cc", | 26 "ui_interface.cc", |
| 25 "ui_interface.h", | 27 "ui_interface.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] | 60 defines += [ "ENABLE_VR_SHELL_UI_DEV" ] |
| 59 } | 61 } |
| 60 | 62 |
| 61 deps = [ | 63 deps = [ |
| 62 ":vr_shell_jni_headers", | 64 ":vr_shell_jni_headers", |
| 63 "//base", | 65 "//base", |
| 64 "//cc", | 66 "//cc", |
| 65 "//components/omnibox/browser", | 67 "//components/omnibox/browser", |
| 66 "//components/rappor", | 68 "//components/rappor", |
| 67 "//components/security_state/core", | 69 "//components/security_state/core", |
| 70 "//content/public/android:jni", |
| 68 "//content/public/browser", | 71 "//content/public/browser", |
| 69 "//content/public/common", | 72 "//content/public/common", |
| 70 "//device/gamepad", | 73 "//device/gamepad", |
| 71 "//device/vr", | 74 "//device/vr", |
| 72 "//ui/android", | 75 "//ui/android", |
| 73 "//ui/base", | 76 "//ui/base", |
| 74 "//ui/display", | 77 "//ui/display", |
| 75 "//ui/gl", | 78 "//ui/gl", |
| 76 "//ui/gl/init", | 79 "//ui/gl/init", |
| 77 ] | 80 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 103 ":vr_common", | 106 ":vr_common", |
| 104 "//base/test:run_all_unittests", | 107 "//base/test:run_all_unittests", |
| 105 "//base/test:test_support", | 108 "//base/test:test_support", |
| 106 "//chrome/browser", | 109 "//chrome/browser", |
| 107 "//testing/gtest", | 110 "//testing/gtest", |
| 108 "//third_party/WebKit/public:blink", | 111 "//third_party/WebKit/public:blink", |
| 109 "//ui/gfx/geometry", | 112 "//ui/gfx/geometry", |
| 110 ] | 113 ] |
| 111 } | 114 } |
| 112 } | 115 } |
| OLD | NEW |