OLD | NEW |
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.gni") |
7 import("//testing/test.gni") | 8 import("//testing/test.gni") |
8 | 9 |
9 assert(enable_webvr) | 10 assert(enable_webvr) |
10 | 11 |
11 if (current_cpu == "arm" || current_cpu == "arm64") { | 12 if (current_cpu == "arm" || current_cpu == "arm64") { |
12 static_library("vr_common") { | 13 static_library("vr_common") { |
13 defines = [] | 14 defines = [] |
14 | 15 |
15 sources = [ | 16 sources = [ |
16 "android_ui_gesture_target.cc", | 17 "android_ui_gesture_target.cc", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 ":vr_common", | 110 ":vr_common", |
110 "//base/test:run_all_unittests", | 111 "//base/test:run_all_unittests", |
111 "//base/test:test_support", | 112 "//base/test:test_support", |
112 "//chrome/browser", | 113 "//chrome/browser", |
113 "//testing/gtest", | 114 "//testing/gtest", |
114 "//third_party/WebKit/public:blink", | 115 "//third_party/WebKit/public:blink", |
115 "//ui/gfx/geometry", | 116 "//ui/gfx/geometry", |
116 ] | 117 ] |
117 } | 118 } |
118 } | 119 } |
OLD | NEW |