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

Side by Side Diff: device/nfc/nfc.gyp

Issue 1708543002: [webnfc] Implement push() method in blink nfc module. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onionsoup_webnfc
Patch Set: GN build generates wtf mojo bindings automatically, remove custom target after rebase. 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'target_name': 'device_nfc_mojo_bindings', 54 'target_name': 'device_nfc_mojo_bindings',
55 'type': 'static_library', 55 'type': 'static_library',
56 'includes': [ 56 'includes': [
57 '../../mojo/mojom_bindings_generator.gypi', 57 '../../mojo/mojom_bindings_generator.gypi',
58 ], 58 ],
59 'sources': [ 59 'sources': [
60 'nfc.mojom', 60 'nfc.mojom',
61 ], 61 ],
62 }, 62 },
63 { 63 {
64 'target_name': 'device_nfc_mojo_bindings_for_blink',
65 'type': 'static_library',
66 'variables': {
67 'mojom_variant': 'wtf',
68 'for_blink': 'true',
69 },
70 'includes': [
71 '../../mojo/mojom_bindings_generator.gypi',
72 ],
73 'sources': [
74 'nfc.mojom',
75 ],
76 },
77 {
64 # GN version: //device/nfc_mojo 78 # GN version: //device/nfc_mojo
65 'target_name': 'device_nfc_mojo', 79 'target_name': 'device_nfc_mojo',
66 'type': '<(component)', 80 'type': '<(component)',
67 'dependencies': [ 81 'dependencies': [
68 '../../base/base.gyp:base', 82 '../../base/base.gyp:base',
69 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 83 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
70 '../../mojo/mojo_edk.gyp:mojo_system_impl', 84 '../../mojo/mojo_edk.gyp:mojo_system_impl',
71 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', 85 '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
72 'device_nfc_mojo_bindings', 86 'device_nfc_mojo_bindings',
73 ], 87 ],
74 'defines': [ 88 'defines': [
75 'DEVICE_NFC_IMPLEMENTATION', 89 'DEVICE_NFC_IMPLEMENTATION',
76 ], 90 ],
77 'sources': [ 91 'sources': [
78 'nfc_impl_default.cc', 92 'nfc_impl_default.cc',
79 'nfc_impl.h', 93 'nfc_impl.h',
80 ], 94 ],
81 }, 95 },
82 ], 96 ],
83 } 97 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/nfc/mock-nfc.html » ('j') | third_party/WebKit/Source/modules/nfc/NFC.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698