| 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("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("sensor") { | 7 blink_modules_sources("sensor") { |
| 8 sources = [ | 8 sources = [ |
| 9 "Accelerometer.cpp", | 9 "Accelerometer.cpp", |
| 10 "Accelerometer.h", | 10 "Accelerometer.h", |
| 11 "AccelerometerReading.cpp", | |
| 12 "AccelerometerReading.h", | |
| 13 "AmbientLightSensor.cpp", | 11 "AmbientLightSensor.cpp", |
| 14 "AmbientLightSensor.h", | 12 "AmbientLightSensor.h", |
| 15 "AmbientLightSensorReading.cpp", | |
| 16 "AmbientLightSensorReading.h", | |
| 17 "Gyroscope.cpp", | 13 "Gyroscope.cpp", |
| 18 "Gyroscope.h", | 14 "Gyroscope.h", |
| 19 "GyroscopeReading.cpp", | |
| 20 "GyroscopeReading.h", | |
| 21 "Magnetometer.cpp", | 15 "Magnetometer.cpp", |
| 22 "Magnetometer.h", | 16 "Magnetometer.h", |
| 23 "MagnetometerReading.cpp", | |
| 24 "MagnetometerReading.h", | |
| 25 "Sensor.cpp", | 17 "Sensor.cpp", |
| 26 "Sensor.h", | 18 "Sensor.h", |
| 27 "SensorErrorEvent.cpp", | 19 "SensorErrorEvent.cpp", |
| 28 "SensorErrorEvent.h", | 20 "SensorErrorEvent.h", |
| 29 "SensorProviderProxy.cpp", | 21 "SensorProviderProxy.cpp", |
| 30 "SensorProviderProxy.h", | 22 "SensorProviderProxy.h", |
| 31 "SensorProxy.cpp", | 23 "SensorProxy.cpp", |
| 32 "SensorProxy.h", | 24 "SensorProxy.h", |
| 33 "SensorReading.cpp", | |
| 34 "SensorReading.h", | |
| 35 "SensorReadingUpdater.cpp", | 25 "SensorReadingUpdater.cpp", |
| 36 "SensorReadingUpdater.h", | 26 "SensorReadingUpdater.h", |
| 37 ] | 27 ] |
| 38 | 28 |
| 39 deps = [ | 29 deps = [ |
| 40 "//device/base/synchronization", | 30 "//device/base/synchronization", |
| 41 "//device/generic_sensor/public/cpp", | 31 "//device/generic_sensor/public/cpp", |
| 42 "//device/generic_sensor/public/interfaces:interfaces_blink", | 32 "//device/generic_sensor/public/interfaces:interfaces_blink", |
| 43 ] | 33 ] |
| 44 } | 34 } |
| OLD | NEW |