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

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

Issue 2464373005: Fix VR Shell crashing when renderer crashes or native page is shown. (Closed)
Patch Set: Rebase + address comment Created 4 years, 1 month 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 deps = [ 51 deps = [
52 ":vr_shell_jni_headers", 52 ":vr_shell_jni_headers",
53 "//base", 53 "//base",
54 "//cc", 54 "//cc",
55 "//content/public/browser", 55 "//content/public/browser",
56 "//content/public/common", 56 "//content/public/common",
57 "//device/vr", 57 "//device/vr",
58 "//third_party/gvr-android-sdk:libgvr", 58 "//third_party/gvr-android-sdk:libgvr",
59 "//ui/android", 59 "//ui/android",
60 "//ui/base", 60 "//ui/base",
61 "//ui/display",
61 "//ui/gl", 62 "//ui/gl",
62 "//ui/gl/init", 63 "//ui/gl/init",
63 ] 64 ]
64 65
65 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 66 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
66 } 67 }
67 68
68 generate_jni("vr_shell_jni_headers") { 69 generate_jni("vr_shell_jni_headers") {
69 sources = [ 70 sources = [
70 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java", 71 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java",
(...skipping 11 matching lines...) Expand all
82 83
83 deps = [ 84 deps = [
84 ":vr_common", 85 ":vr_common",
85 "//base/test:run_all_unittests", 86 "//base/test:run_all_unittests",
86 "//base/test:test_support", 87 "//base/test:test_support",
87 "//testing/gtest", 88 "//testing/gtest",
88 "//ui/gfx/geometry", 89 "//ui/gfx/geometry",
89 ] 90 ]
90 } 91 }
91 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698