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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/bluetooth/bluetooth.gyp ('k') | device/nfc/nfc.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/nfc/BUILD.gn
diff --git a/device/nfc/BUILD.gn b/device/nfc/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..999853d38d75466593cdf47f4cb96dbdf76d066c
--- /dev/null
+++ b/device/nfc/BUILD.gn
@@ -0,0 +1,42 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("nfc") {
+ sources = [
+ "nfc_adapter.cc",
+ "nfc_adapter.h",
+ "nfc_adapter_chromeos.cc",
+ "nfc_adapter_chromeos.h",
+ "nfc_adapter_factory.cc",
+ "nfc_adapter_factory.h",
+ "nfc_ndef_record.cc",
+ "nfc_ndef_record.h",
+ "nfc_ndef_record_utils_chromeos.cc",
+ "nfc_ndef_record_utils_chromeos.h",
+ "nfc_peer.cc",
+ "nfc_peer.h",
+ "nfc_peer_chromeos.cc",
+ "nfc_peer_chromeos.h",
+ "nfc_tag.cc",
+ "nfc_tag.h",
+ "nfc_tag_chromeos.cc",
+ "nfc_tag_chromeos.h",
+ "nfc_tag_technology.cc",
+ "nfc_tag_technology.h",
+ "nfc_tag_technology_chromeos.cc",
+ "nfc_tag_technology_chromeos.h"
+ ]
+
+ deps = [
+ "//base",
+ "//url",
+ ]
+
+ if (is_chromeos) {
+ deps += [
+ "//dbus",
+ #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP)
+ ]
+ }
+}
« 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