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

Unified Diff: device/bluetooth/bluetooth.gyp

Issue 2015463004: bluetooth: Use BluetoothUUID instead of string when sending uuids (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-mojo-request-device
Patch Set: Clean up Created 4 years, 7 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
Index: device/bluetooth/bluetooth.gyp
diff --git a/device/bluetooth/bluetooth.gyp b/device/bluetooth/bluetooth.gyp
index 002ef8d5db93e3a216391aefe09c733045e5371f..337bfeca192b3e046d31db9a3b87b70306191d94 100644
--- a/device/bluetooth/bluetooth.gyp
+++ b/device/bluetooth/bluetooth.gyp
@@ -434,6 +434,43 @@
'test/mock_bluetooth_socket.h',
],
},
+ {
+ 'target_name': 'bluetooth_interfaces_mojom',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ 'public/interfaces/bluetooth_uuid.mojom',
+ ],
+ 'mojom_typemaps': [
+ 'public/interfaces/bluetooth_uuid.typemap',
+ ],
+ },
+ 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ],
+ },
+ {
+ 'target_name': 'bluetooth_interfaces_blink_mojom',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ 'public/interfaces/bluetooth_uuid.mojom',
+ ],
+ 'for_blink': 'true',
+ },
+ 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ],
+ },
+ {
+ 'target_name': 'bluetooth_mojom',
+ 'type': 'static_library',
+ 'export_dependent_settings': [
+ '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ 'dependencies': [
+ '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ 'bluetooth_interfaces_blink_mojom',
+ 'bluetooth_interfaces_mojom',
+ 'device_bluetooth',
+ ],
+ },
],
'conditions': [
['OS == "android"', {

Powered by Google App Engine
This is Rietveld 408576698