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

Side by Side Diff: services/identity/BUILD.gn

Issue 2753753007: Introduce Identity Service and its initial usage (Closed)
Patch Set: Response to reviews 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/identity/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("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni")
7
8 source_set("lib") {
9 sources = [
10 "identity_manager.cc",
11 "identity_manager.h",
12 "identity_service.cc",
13 "identity_service.h",
14 ]
15
16 deps = [
17 "//base",
18 "//components/signin/core/account_id",
19 "//components/signin/core/browser",
20 "//services/identity/public/interfaces",
21 "//services/service_manager/public/cpp",
22 "//services/service_manager/public/interfaces",
23 ]
24 }
25
26 service_manifest("manifest") {
27 name = "identity"
28 source = "manifest.json"
29 }
OLDNEW
« no previous file with comments | « services/device/device_service.cc ('k') | services/identity/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698