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

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

Issue 2757213003: Implementing glTF 1.0 parser (Closed)
Patch Set: Moving glTF test data to a file. 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
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 03de7eef578d9a0a647cb82d64d67273c29bba55..1fff45839c8f2f3e14644b5a91b577d69a159235 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_webvr) {
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_webvr) {
"//third_party/WebKit/public:blink",
"//ui/gfx/geometry",
]
+
+ data = [
+ "test/data/mock.gltf",
+ ]
}
}
« no previous file with comments | « no previous file | chrome/browser/android/vr_shell/gltf_asset.h » ('j') | chrome/browser/android/vr_shell/gltf_parser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698