Commit 0adabba1 authored by acondor's avatar acondor Committed by Commit bot

Remove uneeded enable_vr check

BUG=

Review-Url: https://codereview.chromium.org/2863733002
Cr-Commit-Position: refs/heads/master@{#469473}
parent 6c18fc01
...@@ -118,39 +118,36 @@ if (current_cpu == "arm" || current_cpu == "arm64") { ...@@ -118,39 +118,36 @@ if (current_cpu == "arm" || current_cpu == "arm64") {
} }
} }
if (enable_vr) { test("vr_shell_unittests") {
test("vr_shell_unittests") { sources = [
sources = [ "fps_meter_unittest.cc",
"fps_meter_unittest.cc", "gltf_parser_unittest.cc",
"gltf_parser_unittest.cc", "test/paths.cc",
"test/paths.cc", "test/paths.h",
"test/paths.h", "ui_elements/ui_element_unittest.cc",
"ui_elements/ui_element_unittest.cc", "ui_scene_manager_unittest.cc",
"ui_scene_manager_unittest.cc", "ui_scene_unittest.cc",
"ui_scene_unittest.cc", ]
]
deps = [ deps = [
":vr_common", ":vr_common",
"//base/test:run_all_unittests", "//base/test:run_all_unittests",
"//base/test:test_support", "//base/test:test_support",
"//chrome/browser", "//chrome/browser",
"//testing/gmock", "//testing/gmock",
"//testing/gtest", "//testing/gtest",
"//third_party/WebKit/public:blink", "//third_party/WebKit/public:blink",
"//ui/gfx/geometry", "//ui/gfx/geometry",
] ]
# Ensure libgvr static library appears before gcc library in linking order. # Ensure libgvr static library appears before gcc library in linking order.
# See https://crbug.com/704305 for details. # See https://crbug.com/704305 for details.
libs = libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ]
[ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ]
data = [ data = [
"test/data/sample_inline.gltf", "test/data/sample_inline.gltf",
"test/data/sample_external.gltf", "test/data/sample_external.gltf",
"test/data/sample.bin", "test/data/sample.bin",
"test/data/sample.glb", "test/data/sample.glb",
] ]
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment