| 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 || enable_webvr) |
| 10 | 10 |
| 11 static_library("vr_shell") { | 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_scene.cc", | 19 "ui_scene.cc", |
| 20 "ui_scene.h", | 20 "ui_scene.h", |
| 21 "vr_compositor.cc", | 21 "vr_compositor.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 } | 55 } |
| 56 | 56 |
| 57 generate_jni("vr_shell_jni_headers") { | 57 generate_jni("vr_shell_jni_headers") { |
| 58 sources = [ | 58 sources = [ |
| 59 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java
", | 59 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java
", |
| 60 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg
ate.java", | 60 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg
ate.java", |
| 61 ] | 61 ] |
| 62 jni_package = "vr_shell" | 62 jni_package = "vr_shell" |
| 63 } | 63 } |
| 64 | 64 |
| 65 test("vr_shell_unittests") { | 65 if (enable_vr_shell) { |
| 66 sources = [ | 66 test("vr_shell_unittests") { |
| 67 "ui_elements_unittest.cc", | 67 sources = [ |
| 68 "ui_scene_unittest.cc", | 68 "ui_elements_unittest.cc", |
| 69 ] | 69 "ui_scene_unittest.cc", |
| 70 ] |
| 70 | 71 |
| 71 deps = [ | 72 deps = [ |
| 72 ":vr_shell", | 73 ":vr_common", |
| 73 "//base/test:run_all_unittests", | 74 "//base/test:run_all_unittests", |
| 74 "//base/test:test_support", | 75 "//base/test:test_support", |
| 75 "//testing/gtest", | 76 "//testing/gtest", |
| 76 "//ui/gfx/geometry", | 77 "//ui/gfx/geometry", |
| 77 ] | 78 ] |
| 79 } |
| 78 } | 80 } |
| OLD | NEW |