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

Unified Diff: chrome/browser/android/vr_shell/BUILD.gn

Issue 2757213003: Implementing glTF 1.0 parser (Closed)
Patch Set: Resolving merge. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/gltf_asset.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/vr_shell/BUILD.gn
diff --git a/chrome/browser/android/vr_shell/BUILD.gn b/chrome/browser/android/vr_shell/BUILD.gn
index 87ffab6ec56d57361b6d2ec83c66af9aab693143..d56fa2463d2b18b6575914474ae0280ed2c3da8a 100644
--- a/chrome/browser/android/vr_shell/BUILD.gn
+++ b/chrome/browser/android/vr_shell/BUILD.gn
@@ -20,6 +20,10 @@ if (current_cpu == "arm" || current_cpu == "arm64") {
"animation.h",
"easing.cc",
"easing.h",
+ "gltf_asset.cc",
+ "gltf_asset.h",
+ "gltf_parser.cc",
+ "gltf_parser.h",
"mailbox_to_surface_bridge.cc",
"mailbox_to_surface_bridge.h",
"non_presenting_gvr_delegate.cc",
@@ -102,6 +106,9 @@ if (current_cpu == "arm" || current_cpu == "arm64") {
if (enable_vr) {
test("vr_shell_unittests") {
sources = [
+ "gltf_parser_unittest.cc",
+ "test/paths.cc",
+ "test/paths.h",
"ui_elements_unittest.cc",
"ui_scene_unittest.cc",
]
@@ -115,5 +122,9 @@ if (enable_vr) {
"//third_party/WebKit/public:blink",
"//ui/gfx/geometry",
]
+
+ data = [
+ "test/data/sample_inline.gltf",
+ ]
}
}
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/gltf_asset.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698