Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: third_party/WebKit/Source/modules/sensor/BUILD.gn

Issue 2471003002: [sensors] Accelerometer sensor bindings implementation (Closed)
Patch Set: Fix mikhail comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
10 "Accelerometer.h",
11 "AccelerometerReading.cpp",
12 "AccelerometerReading.h",
9 "AmbientLightSensor.cpp", 13 "AmbientLightSensor.cpp",
10 "AmbientLightSensor.h", 14 "AmbientLightSensor.h",
11 "AmbientLightSensorReading.cpp", 15 "AmbientLightSensorReading.cpp",
12 "AmbientLightSensorReading.h", 16 "AmbientLightSensorReading.h",
13 "Sensor.cpp", 17 "Sensor.cpp",
14 "Sensor.h", 18 "Sensor.h",
15 "SensorErrorEvent.cpp", 19 "SensorErrorEvent.cpp",
16 "SensorErrorEvent.h", 20 "SensorErrorEvent.h",
17 "SensorPollingStrategy.cpp", 21 "SensorPollingStrategy.cpp",
18 "SensorPollingStrategy.h", 22 "SensorPollingStrategy.h",
19 "SensorProviderProxy.cpp", 23 "SensorProviderProxy.cpp",
20 "SensorProviderProxy.h", 24 "SensorProviderProxy.h",
21 "SensorProxy.cpp", 25 "SensorProxy.cpp",
22 "SensorProxy.h", 26 "SensorProxy.h",
23 "SensorReading.cpp", 27 "SensorReading.cpp",
24 "SensorReading.h", 28 "SensorReading.h",
25 "SensorReadingEvent.cpp", 29 "SensorReadingEvent.cpp",
26 "SensorReadingEvent.h", 30 "SensorReadingEvent.h",
27 ] 31 ]
28 32
29 deps = [ 33 deps = [
30 "//device/base/synchronization", 34 "//device/base/synchronization",
31 "//device/generic_sensor/public/cpp", 35 "//device/generic_sensor/public/cpp",
haraken 2016/11/05 12:30:38 esprehn: Not directly related to this CL, is it wr
32 "//device/generic_sensor/public/interfaces:interfaces_blink", 36 "//device/generic_sensor/public/interfaces:interfaces_blink",
33 ] 37 ]
34 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698