| 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 "Sensor.cpp", | 9 "Sensor.cpp", |
| 10 "Sensor.h", | 10 "Sensor.h", |
| 11 "SensorErrorEvent.cpp", | 11 "SensorErrorEvent.cpp", |
| 12 "SensorErrorEvent.h", | 12 "SensorErrorEvent.h", |
| 13 "SensorPollingStrategy.cpp", |
| 14 "SensorPollingStrategy.h", |
| 13 "SensorProviderProxy.cpp", | 15 "SensorProviderProxy.cpp", |
| 14 "SensorProviderProxy.h", | 16 "SensorProviderProxy.h", |
| 15 "SensorProxy.cpp", | 17 "SensorProxy.cpp", |
| 16 "SensorProxy.h", | 18 "SensorProxy.h", |
| 17 "SensorReading.cpp", | 19 "SensorReading.cpp", |
| 18 "SensorReading.h", | 20 "SensorReading.h", |
| 19 "SensorReadingEvent.cpp", | 21 "SensorReadingEvent.cpp", |
| 20 "SensorReadingEvent.h", | 22 "SensorReadingEvent.h", |
| 21 "SensorState.h", | |
| 22 ] | 23 ] |
| 23 | 24 |
| 24 deps = [ | 25 deps = [ |
| 25 "//device/generic_sensor/public/interfaces:interfaces_blink", | 26 "//device/generic_sensor/public/interfaces:interfaces_blink", |
| 26 ] | 27 ] |
| 27 } | 28 } |
| OLD | NEW |