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

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

Issue 2348333002: Revert of [sensors] Ambient light sensor bindings implementation (Closed)
Patch Set: Created 4 years, 3 months 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 "AmbientLightSensor.cpp",
10 "AmbientLightSensor.h",
11 "AmbientLightSensorReading.cpp",
12 "AmbientLightSensorReading.h",
13 "Sensor.cpp", 9 "Sensor.cpp",
14 "Sensor.h", 10 "Sensor.h",
15 "SensorErrorEvent.cpp", 11 "SensorErrorEvent.cpp",
16 "SensorErrorEvent.h", 12 "SensorErrorEvent.h",
17 "SensorPollingStrategy.cpp", 13 "SensorPollingStrategy.cpp",
18 "SensorPollingStrategy.h", 14 "SensorPollingStrategy.h",
19 "SensorProviderProxy.cpp", 15 "SensorProviderProxy.cpp",
20 "SensorProviderProxy.h", 16 "SensorProviderProxy.h",
21 "SensorProxy.cpp", 17 "SensorProxy.cpp",
22 "SensorProxy.h", 18 "SensorProxy.h",
23 "SensorReading.cpp", 19 "SensorReading.cpp",
24 "SensorReading.h", 20 "SensorReading.h",
25 "SensorReadingEvent.cpp", 21 "SensorReadingEvent.cpp",
26 "SensorReadingEvent.h", 22 "SensorReadingEvent.h",
27 ] 23 ]
28 24
29 deps = [ 25 deps = [
30 "//device/generic_sensor/public/interfaces:interfaces_blink", 26 "//device/generic_sensor/public/interfaces:interfaces_blink",
31 ] 27 ]
32 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698