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

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

Issue 2863733002: Remove uneeded enable_vr check (Closed)
Patch 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | 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 76a33b81f8e6c30249228c92b5cc639878a6e6a7..2b0591d622ccc69d3345ab4b32535a83a9342ab9 100644
--- a/chrome/browser/android/vr_shell/BUILD.gn
+++ b/chrome/browser/android/vr_shell/BUILD.gn
@@ -118,39 +118,36 @@ if (current_cpu == "arm" || current_cpu == "arm64") {
}
}
-if (enable_vr) {
- test("vr_shell_unittests") {
- sources = [
- "fps_meter_unittest.cc",
- "gltf_parser_unittest.cc",
- "test/paths.cc",
- "test/paths.h",
- "ui_elements/ui_element_unittest.cc",
- "ui_scene_manager_unittest.cc",
- "ui_scene_unittest.cc",
- ]
+test("vr_shell_unittests") {
+ sources = [
+ "fps_meter_unittest.cc",
+ "gltf_parser_unittest.cc",
+ "test/paths.cc",
+ "test/paths.h",
+ "ui_elements/ui_element_unittest.cc",
+ "ui_scene_manager_unittest.cc",
+ "ui_scene_unittest.cc",
+ ]
- deps = [
- ":vr_common",
- "//base/test:run_all_unittests",
- "//base/test:test_support",
- "//chrome/browser",
- "//testing/gmock",
- "//testing/gtest",
- "//third_party/WebKit/public:blink",
- "//ui/gfx/geometry",
- ]
+ deps = [
+ ":vr_common",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//chrome/browser",
+ "//testing/gmock",
+ "//testing/gtest",
+ "//third_party/WebKit/public:blink",
+ "//ui/gfx/geometry",
+ ]
- # Ensure libgvr static library appears before gcc library in linking order.
- # See https://crbug.com/704305 for details.
- libs =
- [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ]
+ # Ensure libgvr static library appears before gcc library in linking order.
+ # See https://crbug.com/704305 for details.
+ libs = [ "//third_party/gvr-android-sdk/libgvr_shim_static_${current_cpu}.a" ]
- data = [
- "test/data/sample_inline.gltf",
- "test/data/sample_external.gltf",
- "test/data/sample.bin",
- "test/data/sample.glb",
- ]
- }
+ data = [
+ "test/data/sample_inline.gltf",
+ "test/data/sample_external.gltf",
+ "test/data/sample.bin",
+ "test/data/sample.glb",
+ ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698