Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: chrome/browser/android/vr_shell/BUILD.gn

Issue 2335643002: Add VR Shell animation classes and unit test. (Closed)
Patch Set: Add VR Shell animation classes and unit test. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/animation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 8
8 assert(enable_vr_shell && android_java_ui) 9 assert(enable_vr_shell && android_java_ui)
9 10
10 static_library("vr_shell") { 11 static_library("vr_shell") {
11 sources = [ 12 sources = [
13 "animation.cc",
14 "animation.h",
15 "easing.cc",
16 "easing.h",
12 "ui_elements.cc", 17 "ui_elements.cc",
13 "ui_elements.h", 18 "ui_elements.h",
19 "vr_gl_util.cc",
20 "vr_gl_util.h",
21 "vr_math.cc",
22 "vr_math.h",
14 "vr_shell.cc", 23 "vr_shell.cc",
15 "vr_shell.h", 24 "vr_shell.h",
16 "vr_shell_renderer.cc", 25 "vr_shell_renderer.cc",
17 "vr_shell_renderer.h", 26 "vr_shell_renderer.h",
18 "vr_util.cc",
19 "vr_util.h",
20 ] 27 ]
21 28
22 deps = [ 29 deps = [
23 ":vr_shell_jni_headers", 30 ":vr_shell_jni_headers",
24 "//base", 31 "//base",
25 "//device/vr", 32 "//device/vr",
26 "//third_party/gvr-android-sdk:gvr_base_java", 33 "//third_party/gvr-android-sdk:gvr_base_java",
27 "//third_party/gvr-android-sdk:gvr_common_java", 34 "//third_party/gvr-android-sdk:gvr_common_java",
28 "//third_party/gvr-android-sdk:libgvr", 35 "//third_party/gvr-android-sdk:libgvr",
29 "//ui/gl", 36 "//ui/gl",
30 "//ui/gl/init", 37 "//ui/gl/init",
31 ] 38 ]
32 39
33 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 40 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
34 } 41 }
35 42
36 generate_jni("vr_shell_jni_headers") { 43 generate_jni("vr_shell_jni_headers") {
37 sources = [ 44 sources = [
38 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java ", 45 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java ",
39 ] 46 ]
40 jni_package = "vr_shell" 47 jni_package = "vr_shell"
41 } 48 }
49
50 test("vr_shell_unittests") {
51 sources = [
52 "ui_elements_unittest.cc",
53 ]
54
55 deps = [
56 ":vr_shell",
57 "//base/test:run_all_unittests",
58 "//base/test:test_support",
59 "//testing/gtest",
60 "//ui/gfx/geometry",
61 ]
62 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698