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

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

Issue 1486043002: [webnfc] Implement push method for Android nfc mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@step_6_add_mojo_service_CL
Patch Set: Fixes for review comments. Created 4 years, 7 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
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") 5 import("//build/config/features.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 static_library("nfc") { 8 static_library("nfc") {
9 sources = [ 9 sources = [
10 "nfc_adapter.cc", 10 "nfc_adapter.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 ] 52 ]
53 53
54 defines = [ "DEVICE_NFC_IMPLEMENTATION" ] 54 defines = [ "DEVICE_NFC_IMPLEMENTATION" ]
55 55
56 deps = [ 56 deps = [
57 ":mojo_bindings", 57 ":mojo_bindings",
58 "//base", 58 "//base",
59 "//mojo/edk/system", 59 "//mojo/edk/system",
60 "//mojo/public/cpp/bindings", 60 "//mojo/public/cpp/bindings",
61 ] 61 ]
62
63 if (is_android) {
64 sources -= [ "nfc_impl_default.cc" ]
65 }
62 } 66 }
63 67
64 mojom("mojo_bindings") { 68 mojom("mojo_bindings") {
65 sources = [ 69 sources = [
66 "nfc.mojom", 70 "nfc.mojom",
67 ] 71 ]
68 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698