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

Side by Side Diff: device/nfc/BUILD.gn

Issue 394033002: Add gcm, nfc and bluetooth to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « device/bluetooth/bluetooth.gyp ('k') | device/nfc/nfc.gyp » ('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 2014 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 static_library("nfc") {
6 sources = [
7 "nfc_adapter.cc",
8 "nfc_adapter.h",
9 "nfc_adapter_chromeos.cc",
10 "nfc_adapter_chromeos.h",
11 "nfc_adapter_factory.cc",
12 "nfc_adapter_factory.h",
13 "nfc_ndef_record.cc",
14 "nfc_ndef_record.h",
15 "nfc_ndef_record_utils_chromeos.cc",
16 "nfc_ndef_record_utils_chromeos.h",
17 "nfc_peer.cc",
18 "nfc_peer.h",
19 "nfc_peer_chromeos.cc",
20 "nfc_peer_chromeos.h",
21 "nfc_tag.cc",
22 "nfc_tag.h",
23 "nfc_tag_chromeos.cc",
24 "nfc_tag_chromeos.h",
25 "nfc_tag_technology.cc",
26 "nfc_tag_technology.h",
27 "nfc_tag_technology_chromeos.cc",
28 "nfc_tag_technology_chromeos.h"
29 ]
30
31 deps = [
32 "//base",
33 "//url",
34 ]
35
36 if (is_chromeos) {
37 deps += [
38 "//dbus",
39 #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP)
40 ]
41 }
42 }
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth.gyp ('k') | device/nfc/nfc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698