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

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

Issue 2664353002: Host fingerprint mojo service within the device service. (Closed)
Patch Set: incorporate comments and rebase Created 3 years, 10 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
(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 "fingerprint_impl_default.h",
17 ]
18
19 defines = [ "SERVICES_DEVICE_FINGERPRINT_IMPLEMENTATION" ]
20
21 deps = [
22 "//base",
23 "//mojo/public/cpp/bindings",
24 ]
25
26 if (is_chromeos) {
27 sources -= [
28 "fingerprint_impl_default.cc",
29 "fingerprint_impl_default.h",
30 ]
31 deps += [
32 "//chromeos",
33 "//dbus",
34 ]
35 }
36
37 public_deps = [
38 "//services/device/public/interfaces",
39 ]
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698