mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
import("//third_party/WebKit/Source/modules/modules.gni")
|
||
|
|
||
|
blink_modules_sources("sensor") {
|
||
|
sources = [
|
||
|
"AbsoluteOrientationSensor.cpp",
|
||
|
"AbsoluteOrientationSensor.h",
|
||
|
"Accelerometer.cpp",
|
||
|
"Accelerometer.h",
|
||
|
"AmbientLightSensor.cpp",
|
||
|
"AmbientLightSensor.h",
|
||
|
"Gyroscope.cpp",
|
||
|
"Gyroscope.h",
|
||
|
"LinearAccelerationSensor.cpp",
|
||
|
"LinearAccelerationSensor.h",
|
||
|
"Magnetometer.cpp",
|
||
|
"Magnetometer.h",
|
||
|
"OrientationSensor.cpp",
|
||
|
"OrientationSensor.h",
|
||
|
"RelativeOrientationSensor.cpp",
|
||
|
"RelativeOrientationSensor.h",
|
||
|
"Sensor.cpp",
|
||
|
"Sensor.h",
|
||
|
"SensorErrorEvent.cpp",
|
||
|
"SensorErrorEvent.h",
|
||
|
"SensorProviderProxy.cpp",
|
||
|
"SensorProviderProxy.h",
|
||
|
"SensorProxy.cpp",
|
||
|
"SensorProxy.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//device/base/synchronization",
|
||
|
"//services/device/public/cpp/generic_sensor",
|
||
|
"//services/device/public/interfaces:constants_blink",
|
||
|
"//services/device/public/interfaces:generic_sensor_blink",
|
||
|
"//services/service_manager/public/cpp",
|
||
|
]
|
||
|
}
|