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

Side by Side Diff: services/device/fingerprint/BUILD.gn

Issue 2664353002: Host fingerprint mojo service within the device service. (Closed)
Patch Set: Remove biod reference in mojom interface Created 3 years, 9 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
« no previous file with comments | « services/device/device_service.cc ('k') | services/device/fingerprint/DEPS » ('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 2017 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 import("//build/config/features.gni")
6
7 component("fingerprint") {
8 visibility = [ "//services/device:*" ]
9
10 sources = [
11 "fingerprint.h",
12 "fingerprint_export.h",
13 "fingerprint_impl_chromeos.cc",
14 "fingerprint_impl_chromeos.h",
15 "fingerprint_impl_default.cc",
16 ]
17
18 defines = [ "SERVICES_DEVICE_FINGERPRINT_IMPLEMENTATION" ]
19
20 deps = [
21 "//base",
22 "//mojo/public/cpp/bindings",
23 ]
24
25 if (is_chromeos) {
Rahul Chaturvedi 2017/02/27 22:26:43 This looks a little backwards. This would be a lo
xiaoyinh(OOO Sep 11-29) 2017/02/28 00:32:48 Done.
26 sources -= [ "fingerprint_impl_default.cc" ]
27 deps += [ "//dbus" ]
28 }
29
30 public_deps = [
31 "//services/device/public/interfaces",
32 ]
33 }
OLDNEW
« no previous file with comments | « services/device/device_service.cc ('k') | services/device/fingerprint/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698