| 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 && android_java_ui) | 9 assert(enable_vr_shell && android_java_ui) |
| 10 | 10 |
| 11 static_library("vr_shell") { | 11 static_library("vr_shell") { |
| 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 "vr_compositor.cc", | 19 "vr_compositor.cc", |
| 20 "vr_compositor.h", | 20 "vr_compositor.h", |
| 21 "vr_controller.cc", |
| 22 "vr_controller.h", |
| 23 "vr_controller_manager.cc", |
| 24 "vr_controller_manager.h", |
| 25 "vr_gesture.h", |
| 21 "vr_gl_util.cc", | 26 "vr_gl_util.cc", |
| 22 "vr_gl_util.h", | 27 "vr_gl_util.h", |
| 28 "vr_input_manager.cc", |
| 29 "vr_input_manager.h", |
| 23 "vr_math.cc", | 30 "vr_math.cc", |
| 24 "vr_math.h", | 31 "vr_math.h", |
| 25 "vr_shell.cc", | 32 "vr_shell.cc", |
| 26 "vr_shell.h", | 33 "vr_shell.h", |
| 27 "vr_shell_delegate.cc", | 34 "vr_shell_delegate.cc", |
| 28 "vr_shell_delegate.h", | 35 "vr_shell_delegate.h", |
| 29 "vr_shell_renderer.cc", | 36 "vr_shell_renderer.cc", |
| 30 "vr_shell_renderer.h", | 37 "vr_shell_renderer.h", |
| 31 ] | 38 ] |
| 32 | 39 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 61 ] | 68 ] |
| 62 | 69 |
| 63 deps = [ | 70 deps = [ |
| 64 ":vr_shell", | 71 ":vr_shell", |
| 65 "//base/test:run_all_unittests", | 72 "//base/test:run_all_unittests", |
| 66 "//base/test:test_support", | 73 "//base/test:test_support", |
| 67 "//testing/gtest", | 74 "//testing/gtest", |
| 68 "//ui/gfx/geometry", | 75 "//ui/gfx/geometry", |
| 69 ] | 76 ] |
| 70 } | 77 } |
| OLD | NEW |