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

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

Issue 1486033002: [webnfc] Introduce NFC mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove dependency from content / browser Created 5 years 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
« no previous file with comments | « device/nfc/BUILD.gn ('k') | device/nfc/nfc.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'conditions': [ 43 'conditions': [
44 ['chromeos==1', { 44 ['chromeos==1', {
45 'dependencies': [ 45 'dependencies': [
46 '../../build/linux/system.gyp:dbus', 46 '../../build/linux/system.gyp:dbus',
47 '../../chromeos/chromeos.gyp:chromeos', 47 '../../chromeos/chromeos.gyp:chromeos',
48 '../../dbus/dbus.gyp:dbus', 48 '../../dbus/dbus.gyp:dbus',
49 ] 49 ]
50 }], 50 }],
51 ], 51 ],
52 }, 52 },
53 {
54 'target_name': 'device_nfc_mojo_bindings',
55 'type': 'static_library',
56 'includes': [
57 '../../third_party/mojo/mojom_bindings_generator.gypi',
58 ],
59 'sources': [
60 'nfc.mojom',
61 ],
62 },
53 ], 63 ],
54 } 64 }
OLDNEW
« no previous file with comments | « device/nfc/BUILD.gn ('k') | device/nfc/nfc.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698