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

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

Issue 2616583002: Fix WebVR support for devices without Async Reprojection. (Closed)
Patch Set: Fix compile? Created 3 years, 11 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
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 import("//testing/test.gni")
8 8
9 assert(enable_vr_shell || enable_webvr) 9 assert(enable_vr_shell || enable_webvr)
10 10
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "//content/public/browser", 65 "//content/public/browser",
66 "//content/public/common", 66 "//content/public/common",
67 "//device/vr", 67 "//device/vr",
68 "//ui/android", 68 "//ui/android",
69 "//ui/base", 69 "//ui/base",
70 "//ui/display", 70 "//ui/display",
71 "//ui/gl", 71 "//ui/gl",
72 "//ui/gl/init", 72 "//ui/gl/init",
73 ] 73 ]
74 74
75 libs = 75 libs = [
76 [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] 76 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a",
77 "android",
78 ]
77 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 79 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
78 } 80 }
79 81
80 generate_jni("vr_shell_jni_headers") { 82 generate_jni("vr_shell_jni_headers") {
81 sources = [ 83 sources = [
82 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDel egate.java", 84 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDel egate.java",
83 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImp l.java", 85 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImp l.java",
84 ] 86 ]
85 jni_package = "vr_shell" 87 jni_package = "vr_shell"
86 } 88 }
(...skipping 10 matching lines...) Expand all
97 ":vr_common", 99 ":vr_common",
98 "//base/test:run_all_unittests", 100 "//base/test:run_all_unittests",
99 "//base/test:test_support", 101 "//base/test:test_support",
100 "//chrome/browser", 102 "//chrome/browser",
101 "//testing/gtest", 103 "//testing/gtest",
102 "//third_party/WebKit/public:blink", 104 "//third_party/WebKit/public:blink",
103 "//ui/gfx/geometry", 105 "//ui/gfx/geometry",
104 ] 106 ]
105 } 107 }
106 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698