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

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

Issue 2319863005: Implement new compositor and ContentViewCore reparenting for VR Shell. (Closed)
Patch Set: Rebase onto ToT 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
« no previous file with comments | « chrome/android/java_sources.gni ('k') | chrome/browser/android/vr_shell/vr_compositor.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("//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
11 static_library("vr_shell") { 11 static_library("vr_shell") {
12 sources = [ 12 sources = [
13 "animation.cc", 13 "animation.cc",
14 "animation.h", 14 "animation.h",
15 "easing.cc", 15 "easing.cc",
16 "easing.h", 16 "easing.h",
17 "ui_elements.cc", 17 "ui_elements.cc",
18 "ui_elements.h", 18 "ui_elements.h",
19 "vr_compositor.cc",
20 "vr_compositor.h",
19 "vr_gl_util.cc", 21 "vr_gl_util.cc",
20 "vr_gl_util.h", 22 "vr_gl_util.h",
21 "vr_math.cc", 23 "vr_math.cc",
22 "vr_math.h", 24 "vr_math.h",
23 "vr_shell.cc", 25 "vr_shell.cc",
24 "vr_shell.h", 26 "vr_shell.h",
25 "vr_shell_renderer.cc", 27 "vr_shell_renderer.cc",
26 "vr_shell_renderer.h", 28 "vr_shell_renderer.h",
27 ] 29 ]
28 30
(...skipping 24 matching lines...) Expand all
53 ] 55 ]
54 56
55 deps = [ 57 deps = [
56 ":vr_shell", 58 ":vr_shell",
57 "//base/test:run_all_unittests", 59 "//base/test:run_all_unittests",
58 "//base/test:test_support", 60 "//base/test:test_support",
59 "//testing/gtest", 61 "//testing/gtest",
60 "//ui/gfx/geometry", 62 "//ui/gfx/geometry",
61 ] 63 ]
62 } 64 }
OLDNEW
« no previous file with comments | « chrome/android/java_sources.gni ('k') | chrome/browser/android/vr_shell/vr_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698