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

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

Issue 77563002: nfc: Add native NFC API definitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang error. Created 7 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 | Annotate | Revision Log
« no previous file with comments | « device/nfc/DEPS ('k') | device/nfc/nfc_adapter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'device_nfc',
12 'type': 'static_library',
13 'dependencies': [
14 '../../base/base.gyp:base',
15 ],
16 'sources': [
17 'nfc_adapter.cc',
18 'nfc_adapter.h',
19 'nfc_adapter_factory.cc',
20 'nfc_adapter_factory.h',
21 'nfc_ndef_record.cc',
22 'nfc_ndef_record.h',
23 'nfc_peer.cc',
24 'nfc_peer.h',
25 'nfc_tag.cc',
26 'nfc_tag.h',
27 'nfc_tag_technology.cc',
28 'nfc_tag_technology.h'
29 ],
30 'conditions': [
31 ['chromeos==1', {
32 'dependencies': [
33 '../../build/linux/system.gyp:dbus',
34 '../../chromeos/chromeos.gyp:chromeos',
35 '../../dbus/dbus.gyp:dbus',
36 ]
37 }],
38 ],
39 },
40 ],
41 }
OLDNEW
« no previous file with comments | « device/nfc/DEPS ('k') | device/nfc/nfc_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698