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

Unified Diff: device/generic_sensor/BUILD.gn

Issue 2144623003: [sensors] Introduce Generic Sensor API interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Definition for PlatformSensorProvider ctor/dtor Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/content_switches.cc ('k') | device/generic_sensor/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/generic_sensor/BUILD.gn
diff --git a/device/generic_sensor/BUILD.gn b/device/generic_sensor/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..82693dcd8292ec422ee6d541b4f08ada35cd9556
--- /dev/null
+++ b/device/generic_sensor/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("generic_sensor") {
+ sources = [
+ "platform_sensor.cc",
+ "platform_sensor.h",
+ "platform_sensor_configuration.cc",
+ "platform_sensor_configuration.h",
+ "platform_sensor_provider.h",
+ "platform_sensor_provider_base.cc",
+ "platform_sensor_provider_base.h",
+ "platform_sensor_provider_default.cc",
+ "sensor_export.h",
+ "sensor_impl.cc",
+ "sensor_impl.h",
+ "sensor_provider_impl.cc",
+ "sensor_provider_impl.h",
+ ]
+
+ defines = [ "DEVICE_GENERIC_SENSOR_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//device/generic_sensor/public/interfaces",
+ ]
+}
« no previous file with comments | « content/public/common/content_switches.cc ('k') | device/generic_sensor/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698