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

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

Issue 2252103002: Introduce ChromeVR to Chrome on Android (behind a build flag) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add comment as suggested by Daniel 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 | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/android/vr_shell/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/android/rules.gni")
6 import("//chrome/common/features.gni")
7
8 assert(enable_vr_shell && android_java_ui)
9
10 static_library("vr_shell") {
11 sources = [
12 "vr_shell.cc",
13 "vr_shell.h",
14 "vr_shell_renderer.cc",
15 "vr_shell_renderer.h",
16 "vr_util.cc",
17 "vr_util.h",
18 ]
19
20 deps = [
21 ":vr_shell_jni_headers",
22 "//base",
23 "//third_party/gvr-android-sdk:gvr_base_java",
24 "//third_party/gvr-android-sdk:gvr_common_java",
25 "//third_party/gvr-android-sdk:libgvr",
26 "//ui/gl",
27 "//ui/gl/init",
28 ]
29
30 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
31 }
32
33 generate_jni("vr_shell_jni_headers") {
34 sources = [
35 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java ",
36 ]
37 jni_package = "vr_shell"
38 }
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/android/vr_shell/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698