| 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_vr_shell || enable_webvr) | 9 assert(enable_vr_shell || enable_webvr) |
| 10 | 10 |
| 11 static_library("vr_common") { | 11 static_library("vr_common") { |
| 12 sources = [ | 12 sources = [ |
| 13 "animation.cc", | 13 "animation.cc", |
| 14 "animation.h", | 14 "animation.h", |
| 15 "easing.cc", | 15 "easing.cc", |
| 16 "easing.h", | 16 "easing.h", |
| 17 "ui_elements.cc", | 17 "ui_elements.cc", |
| 18 "ui_elements.h", | 18 "ui_elements.h", |
| 19 "ui_interface.cc", |
| 20 "ui_interface.h", |
| 19 "ui_scene.cc", | 21 "ui_scene.cc", |
| 20 "ui_scene.h", | 22 "ui_scene.h", |
| 21 "vr_compositor.cc", | 23 "vr_compositor.cc", |
| 22 "vr_compositor.h", | 24 "vr_compositor.h", |
| 23 "vr_controller.cc", | 25 "vr_controller.cc", |
| 24 "vr_controller.h", | 26 "vr_controller.h", |
| 25 "vr_gesture.h", | 27 "vr_gesture.h", |
| 26 "vr_gl_util.cc", | 28 "vr_gl_util.cc", |
| 27 "vr_gl_util.h", | 29 "vr_gl_util.h", |
| 28 "vr_input_manager.cc", | 30 "vr_input_manager.cc", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 73 |
| 72 deps = [ | 74 deps = [ |
| 73 ":vr_common", | 75 ":vr_common", |
| 74 "//base/test:run_all_unittests", | 76 "//base/test:run_all_unittests", |
| 75 "//base/test:test_support", | 77 "//base/test:test_support", |
| 76 "//testing/gtest", | 78 "//testing/gtest", |
| 77 "//ui/gfx/geometry", | 79 "//ui/gfx/geometry", |
| 78 ] | 80 ] |
| 79 } | 81 } |
| 80 } | 82 } |
| OLD | NEW |