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

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

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

Powered by Google App Engine
This is Rietveld 408576698