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