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

Side by Side Diff: device/BUILD.gn

Issue 2727813004: [sensors][win] Add support for AbsoluteOrientation sensor (Closed)
Patch Set: Fixes for comments from Reilly 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 unified diff | Download patch
« no previous file with comments | « no previous file | device/generic_sensor/platform_sensor_and_provider_unittest_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("vr/features.gni") 5 import("vr/features.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") # For generate_jni(). 10 import("//build/config/android/rules.gni") # For generate_jni().
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 if (is_win) { 246 if (is_win) {
247 sources += [ 247 sources += [
248 "bluetooth/bluetooth_classic_win_fake.cc", 248 "bluetooth/bluetooth_classic_win_fake.cc",
249 "bluetooth/bluetooth_classic_win_fake.h", 249 "bluetooth/bluetooth_classic_win_fake.h",
250 "bluetooth/bluetooth_low_energy_win_fake.cc", 250 "bluetooth/bluetooth_low_energy_win_fake.cc",
251 "bluetooth/bluetooth_low_energy_win_fake.h", 251 "bluetooth/bluetooth_low_energy_win_fake.h",
252 ] 252 ]
253 253
254 # Needed for "generic_sensor/platform_sensor_and_provider_unittest_win.cc" 254 # Needed for "generic_sensor/platform_sensor_and_provider_unittest_win.cc"
255 libs = [ "sensorsapi.lib" ] 255 libs = [
256 "propsys.lib",
257 "sensorsapi.lib",
258 ]
256 } 259 }
257 260
258 if (enable_vr) { 261 if (enable_vr) {
259 sources += [ 262 sources += [
260 "vr/vr_device_manager_unittest.cc", 263 "vr/vr_device_manager_unittest.cc",
261 "vr/vr_display_impl_unittest.cc", 264 "vr/vr_display_impl_unittest.cc",
262 "vr/vr_service_impl_unittest.cc", 265 "vr/vr_service_impl_unittest.cc",
263 ] 266 ]
264 267
265 deps += [ 268 deps += [
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 ] 312 ]
310 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] 313 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ]
311 } 314 }
312 315
313 java_cpp_enum("bluetooth_test_javagen") { 316 java_cpp_enum("bluetooth_test_javagen") {
314 sources = [ 317 sources = [
315 "bluetooth/test/bluetooth_test.h", 318 "bluetooth/test/bluetooth_test.h",
316 ] 319 ]
317 } 320 }
318 } 321 }
OLDNEW
« no previous file with comments | « no previous file | device/generic_sensor/platform_sensor_and_provider_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698