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

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

Issue 2975683002: Add GeolocationManager service (Closed)
Patch Set: typo Created 3 years, 5 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/vr_gl_thread.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("//device/vr/features/features.gni") 7 import("//device/vr/features/features.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 assert(enable_vr) 10 assert(enable_vr)
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 ":vr_shell_jni_headers", 54 ":vr_shell_jni_headers",
55 "//base", 55 "//base",
56 "//cc", 56 "//cc",
57 "//chrome:resources", 57 "//chrome:resources",
58 "//chrome/browser/vr:vr_common", 58 "//chrome/browser/vr:vr_common",
59 "//components/rappor", 59 "//components/rappor",
60 "//content/public/android:jni", 60 "//content/public/android:jni",
61 "//content/public/browser", 61 "//content/public/browser",
62 "//content/public/common", 62 "//content/public/common",
63 "//device/gamepad", 63 "//device/gamepad",
64 "//device/geolocation/public/interfaces",
64 "//device/vr", 65 "//device/vr",
65 "//services/ui/public/cpp/gpu", 66 "//services/ui/public/cpp/gpu",
66 "//ui/android", 67 "//ui/android",
67 "//ui/base", 68 "//ui/base",
68 "//ui/display", 69 "//ui/display",
69 "//ui/gl", 70 "//ui/gl",
70 "//ui/gl/init", 71 "//ui/gl/init",
71 ] 72 ]
72 73
73 public_deps = [ 74 public_deps = [
74 "//device/vr:mojo_bindings", 75 "//device/vr:mojo_bindings",
75 ] 76 ]
76 77
77 libs = [ 78 libs = [
78 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", 79 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a",
79 "android", 80 "android",
80 ] 81 ]
81 82
82 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 83 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
83 } 84 }
84 85
85 generate_jni("vr_shell_jni_headers") { 86 generate_jni("vr_shell_jni_headers") {
86 sources = [ 87 sources = [
87 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrCoreInfo.j ava", 88 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrCoreInfo.j ava",
88 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java", 89 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java",
89 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl. java", 90 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl. java",
90 ] 91 ]
91 jni_package = "vr_shell" 92 jni_package = "vr_shell"
92 } 93 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/vr_gl_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698