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

Unified Diff: device/nfc/nfc.gyp

Issue 1912363002: [webnfc] Add default implementation for nfc mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for component gn build. Created 4 years, 8 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/nfc/nfc.gyp
diff --git a/device/nfc/nfc.gyp b/device/nfc/nfc.gyp
index 9f17565e18ebb101eb6ccd050520b6026e490e38..2091cbde03657e9a9eb03bcd68664811779ca74d 100644
--- a/device/nfc/nfc.gyp
+++ b/device/nfc/nfc.gyp
@@ -60,5 +60,24 @@
'nfc.mojom',
],
},
+ {
+ # GN version: //device/nfc_mojo
+ 'target_name': 'device_nfc_mojo',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
Reilly Grant (use Gerrit) 2016/04/25 21:48:35 Also here.
shalamov 2016/04/26 10:17:32 Done.
+ '../../mojo/mojo_edk.gyp:mojo_system_impl',
+ '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ 'device_nfc_mojo_bindings',
+ ],
+ 'defines': [
+ 'DEVICE_NFC_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'nfc_impl_default.cc',
+ 'nfc_impl.h',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698