mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
49 lines
1.3 KiB
Plaintext
49 lines
1.3 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/blink/renderer/modules/modules.gni")
|
|
|
|
blink_modules_sources("sensor") {
|
|
sources = [
|
|
"absolute_orientation_sensor.cc",
|
|
"absolute_orientation_sensor.h",
|
|
"accelerometer.cc",
|
|
"accelerometer.h",
|
|
"ambient_light_sensor.cc",
|
|
"ambient_light_sensor.h",
|
|
"gyroscope.cc",
|
|
"gyroscope.h",
|
|
"linear_acceleration_sensor.cc",
|
|
"linear_acceleration_sensor.h",
|
|
"magnetometer.cc",
|
|
"magnetometer.h",
|
|
"orientation_sensor.cc",
|
|
"orientation_sensor.h",
|
|
"relative_orientation_sensor.cc",
|
|
"relative_orientation_sensor.h",
|
|
"sensor.cc",
|
|
"sensor.h",
|
|
"sensor_error_event.cc",
|
|
"sensor_error_event.h",
|
|
"sensor_inspector_agent.cc",
|
|
"sensor_inspector_agent.h",
|
|
"sensor_provider_proxy.cc",
|
|
"sensor_provider_proxy.h",
|
|
"sensor_proxy.cc",
|
|
"sensor_proxy.h",
|
|
"sensor_proxy_impl.cc",
|
|
"sensor_proxy_impl.h",
|
|
"sensor_proxy_inspector_impl.cc",
|
|
"sensor_proxy_inspector_impl.h",
|
|
"sensor_reading_remapper.cc",
|
|
"sensor_reading_remapper.h",
|
|
]
|
|
|
|
deps = [
|
|
"//device/base/synchronization",
|
|
"//services/device/public/cpp/generic_sensor",
|
|
"//services/service_manager/public/cpp",
|
|
]
|
|
}
|