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

Unified Diff: device/sensors/sensors.gyp

Issue 2037513002: Convert device_sensors to use mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@conversion--mime-registry
Patch Set: Created 4 years, 5 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 | « device/sensors/public/interfaces/orientation.mojom ('k') | ipc/ipc_message_start.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/sensors/sensors.gyp
diff --git a/device/sensors/sensors.gyp b/device/sensors/sensors.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..01112a9137eea4b7a92cd637f50dc81437343677
--- /dev/null
+++ b/device/sensors/sensors.gyp
@@ -0,0 +1,35 @@
+# 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ 'mojom_files': [
+ 'public/interfaces/light.mojom',
+ 'public/interfaces/motion.mojom',
+ 'public/interfaces/orientation.mojom',
+ ],
+ },
+ 'targets': [
+ {
+ 'target_name': 'device_sensors_mojo_bindings',
+ 'type': 'static_library',
+ 'sources': [ '<@(mojom_files)' ],
+ 'includes': [
+ '../../mojo/mojom_bindings_generator.gypi',
+ ],
+ },
+ {
+ 'target_name': 'device_sensors_mojo_bindings_for_blink',
+ 'type': 'static_library',
+ 'sources': [ '<@(mojom_files)' ],
+ 'variables': {
+ 'for_blink': 'true',
+ },
+ 'includes': [
+ '../../mojo/mojom_bindings_generator.gypi',
+ ],
+ },
+ ],
+}
« no previous file with comments | « device/sensors/public/interfaces/orientation.mojom ('k') | ipc/ipc_message_start.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698