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

Unified Diff: device/nfc/nfc.gyp

Issue 1486043002: [webnfc] Implement push method for Android nfc mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@step_6_add_mojo_service_CL
Patch Set: Move WindowAndroidChangedObserver to other observers in content layer 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 | « device/nfc/android/java/src/org/chromium/device/nfc/OWNERS ('k') | device/nfc/nfc.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/nfc/nfc.gyp
diff --git a/device/nfc/nfc.gyp b/device/nfc/nfc.gyp
index d76762119dd5085c00e3f38ca388b76fc7636206..09707fa5ff2bb1f602dc9b8c910e68f7356cb83c 100644
--- a/device/nfc/nfc.gyp
+++ b/device/nfc/nfc.gyp
@@ -5,6 +5,8 @@
{
'variables': {
'chromium_code': 1,
+ 'android_support_v13_target%':
+ '../../third_party/android_tools/android_tools.gyp:android_support_v13_javalib',
},
'targets': [
{
@@ -78,4 +80,25 @@
],
},
],
+ 'conditions': [
+ ['OS == "android"', {
+ 'targets': [
+ {
+ 'target_name': 'device_nfc_java',
+ 'type': 'none',
+ 'dependencies': [
+ '<(android_support_v13_target)',
+ '../../base/base.gyp:base',
+ '../../mojo/mojo_public.gyp:mojo_bindings_java',
+ 'device_nfc_mojo_bindings',
+ ],
+ 'variables': {
+ 'java_in_dir': '../../device/nfc/android/java',
+ },
+ 'includes': [ '../../build/java.gypi' ],
+ },
+ ],
+ }, { # OS != "android"
+ }],
+ ],
}
« no previous file with comments | « device/nfc/android/java/src/org/chromium/device/nfc/OWNERS ('k') | device/nfc/nfc.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698