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

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

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 | « no previous file | 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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 import("//build/config/features.gni")
6 import("//mojo/public/tools/bindings/mojom.gni")
7
5 static_library("nfc") { 8 static_library("nfc") {
6 sources = [ 9 sources = [
7 "nfc_adapter.cc", 10 "nfc_adapter.cc",
8 "nfc_adapter.h", 11 "nfc_adapter.h",
9 "nfc_adapter_chromeos.cc", 12 "nfc_adapter_chromeos.cc",
10 "nfc_adapter_chromeos.h", 13 "nfc_adapter_chromeos.h",
11 "nfc_adapter_factory.cc", 14 "nfc_adapter_factory.cc",
12 "nfc_adapter_factory.h", 15 "nfc_adapter_factory.h",
13 "nfc_ndef_record.cc", 16 "nfc_ndef_record.cc",
14 "nfc_ndef_record.h", 17 "nfc_ndef_record.h",
(...skipping 18 matching lines...) Expand all
33 "//url", 36 "//url",
34 ] 37 ]
35 38
36 if (is_chromeos) { 39 if (is_chromeos) {
37 deps += [ 40 deps += [
38 "//chromeos", 41 "//chromeos",
39 "//dbus", 42 "//dbus",
40 ] 43 ]
41 } 44 }
42 } 45 }
46
47 mojom("mojo_bindings") {
48 sources = [
49 "nfc.mojom",
50 ]
51 }
OLDNEW
« no previous file with comments | « no previous file | device/nfc/nfc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698