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

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

Issue 2354373002: Implement UI web contents for Vr Shell (Closed)
Patch Set: rebase 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
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 && android_java_ui) 9 assert(enable_vr_shell && android_java_ui)
10 10
(...skipping 19 matching lines...) Expand all
30 "vr_shell_delegate.h", 30 "vr_shell_delegate.h",
31 "vr_shell_renderer.cc", 31 "vr_shell_renderer.cc",
32 "vr_shell_renderer.h", 32 "vr_shell_renderer.h",
33 ] 33 ]
34 34
35 deps = [ 35 deps = [
36 ":vr_shell_jni_headers", 36 ":vr_shell_jni_headers",
37 "//base", 37 "//base",
38 "//cc", 38 "//cc",
39 "//content/public/browser", 39 "//content/public/browser",
40 "//content/public/common",
40 "//device/vr", 41 "//device/vr",
41 "//third_party/gvr-android-sdk:gvr_base_java", 42 "//third_party/gvr-android-sdk:gvr_base_java",
42 "//third_party/gvr-android-sdk:gvr_common_java", 43 "//third_party/gvr-android-sdk:gvr_common_java",
43 "//third_party/gvr-android-sdk:libgvr", 44 "//third_party/gvr-android-sdk:libgvr",
44 "//ui/android", 45 "//ui/android",
46 "//ui/base",
45 "//ui/gl", 47 "//ui/gl",
46 "//ui/gl/init", 48 "//ui/gl/init",
47 ] 49 ]
48 50
49 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ] 51 configs += [ "//third_party/gvr-android-sdk:libgvr_config" ]
50 } 52 }
51 53
52 generate_jni("vr_shell_jni_headers") { 54 generate_jni("vr_shell_jni_headers") {
53 sources = [ 55 sources = [
54 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java ", 56 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java ",
55 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java", 57 "//chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellDeleg ate.java",
56 ] 58 ]
57 jni_package = "vr_shell" 59 jni_package = "vr_shell"
58 } 60 }
59 61
60 test("vr_shell_unittests") { 62 test("vr_shell_unittests") {
61 sources = [ 63 sources = [
62 "ui_elements_unittest.cc", 64 "ui_elements_unittest.cc",
63 "ui_scene_unittest.cc", 65 "ui_scene_unittest.cc",
64 ] 66 ]
65 67
66 deps = [ 68 deps = [
67 ":vr_shell", 69 ":vr_shell",
68 "//base/test:run_all_unittests", 70 "//base/test:run_all_unittests",
69 "//base/test:test_support", 71 "//base/test:test_support",
70 "//testing/gtest", 72 "//testing/gtest",
71 "//ui/gfx/geometry", 73 "//ui/gfx/geometry",
72 ] 74 ]
73 } 75 }
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShell.java ('k') | chrome/browser/android/vr_shell/vr_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698