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

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

Issue 2975683002: Add GeolocationManager service (Closed)
Patch Set: Rebase 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
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",
65 "//device/geolocation/public/interfaces",
64 "//device/vr", 66 "//device/vr",
65 "//services/ui/public/cpp/gpu", 67 "//services/ui/public/cpp/gpu",
66 "//ui/android", 68 "//ui/android",
67 "//ui/base", 69 "//ui/base",
68 "//ui/display", 70 "//ui/display",
69 "//ui/gl", 71 "//ui/gl",
70 "//ui/gl/init", 72 "//ui/gl/init",
71 ] 73 ]
72 74
73 public_deps = [ 75 public_deps = [
74 "//device/vr:mojo_bindings", 76 "//device/vr:mojo_bindings",
75 ] 77 ]
76 78
77 libs = [ 79 libs = [
78 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a", 80 "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a",
79 "android", 81 "android",
80 ] 82 ]
81 83
82 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 84 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
83 } 85 }
84 86
85 generate_jni("vr_shell_jni_headers") { 87 generate_jni("vr_shell_jni_headers") {
86 sources = [ 88 sources = [
87 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrCoreInfo.j ava", 89 "//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", 90 "//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", 91 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl. java",
90 ] 92 ]
91 jni_package = "vr_shell" 93 jni_package = "vr_shell"
92 } 94 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/vr_gl_thread.h » ('j') | chrome/browser/android/vr_shell/vr_shell.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698