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

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

Issue 2865463003: Tracks GVR version crossed with headset type using UMA. (Closed)
Patch Set: Nit: only create native-Java enum if enable_vr is set Created 3 years, 7 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "vr_controller.cc", 61 "vr_controller.cc",
62 "vr_controller.h", 62 "vr_controller.h",
63 "vr_controller_model.cc", 63 "vr_controller_model.cc",
64 "vr_controller_model.h", 64 "vr_controller_model.h",
65 "vr_gl_thread.cc", 65 "vr_gl_thread.cc",
66 "vr_gl_thread.h", 66 "vr_gl_thread.h",
67 "vr_gl_util.cc", 67 "vr_gl_util.cc",
68 "vr_gl_util.h", 68 "vr_gl_util.h",
69 "vr_input_manager.cc", 69 "vr_input_manager.cc",
70 "vr_input_manager.h", 70 "vr_input_manager.h",
71 "vr_metrics_util.cc",
72 "vr_metrics_util.h",
71 "vr_shell.cc", 73 "vr_shell.cc",
72 "vr_shell.h", 74 "vr_shell.h",
73 "vr_shell_delegate.cc", 75 "vr_shell_delegate.cc",
74 "vr_shell_delegate.h", 76 "vr_shell_delegate.h",
75 "vr_shell_gl.cc", 77 "vr_shell_gl.cc",
76 "vr_shell_gl.h", 78 "vr_shell_gl.h",
77 "vr_shell_renderer.cc", 79 "vr_shell_renderer.cc",
78 "vr_shell_renderer.h", 80 "vr_shell_renderer.h",
79 "vr_usage_monitor.cc", 81 "vr_usage_monitor.cc",
80 "vr_usage_monitor.h", 82 "vr_usage_monitor.h",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 # See https://crbug.com/704305 for details. 149 # See https://crbug.com/704305 for details.
148 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ] 150 libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ]
149 151
150 data = [ 152 data = [
151 "test/data/sample_inline.gltf", 153 "test/data/sample_inline.gltf",
152 "test/data/sample_external.gltf", 154 "test/data/sample_external.gltf",
153 "test/data/sample.bin", 155 "test/data/sample.bin",
154 "test/data/sample.glb", 156 "test/data/sample.glb",
155 ] 157 ]
156 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698