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

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

Issue 2428383006: Decouple VR Shell DPR and CSS size from Physical Displays. (Closed)
Patch Set: Created 4 years, 2 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 29 matching lines...) Expand all
40 deps = [ 40 deps = [
41 ":vr_shell_jni_headers", 41 ":vr_shell_jni_headers",
42 "//base", 42 "//base",
43 "//cc", 43 "//cc",
44 "//content/public/browser", 44 "//content/public/browser",
45 "//content/public/common", 45 "//content/public/common",
46 "//device/vr", 46 "//device/vr",
47 "//third_party/gvr-android-sdk:libgvr", 47 "//third_party/gvr-android-sdk:libgvr",
48 "//ui/android", 48 "//ui/android",
49 "//ui/base", 49 "//ui/base",
50 "//ui/display",
50 "//ui/gl", 51 "//ui/gl",
51 "//ui/gl/init", 52 "//ui/gl/init",
52 ] 53 ]
53 54
54 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 55 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
55 } 56 }
56 57
57 generate_jni("vr_shell_jni_headers") { 58 generate_jni("vr_shell_jni_headers") {
58 sources = [ 59 sources = [
59 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java", 60 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java",
(...skipping 11 matching lines...) Expand all
71 72
72 deps = [ 73 deps = [
73 ":vr_common", 74 ":vr_common",
74 "//base/test:run_all_unittests", 75 "//base/test:run_all_unittests",
75 "//base/test:test_support", 76 "//base/test:test_support",
76 "//testing/gtest", 77 "//testing/gtest",
77 "//ui/gfx/geometry", 78 "//ui/gfx/geometry",
78 ] 79 ]
79 } 80 }
80 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698