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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/device/device_service.cc ('k') | services/identity/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/identity/BUILD.gn
diff --git a/services/identity/BUILD.gn b/services/identity/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..02a59b9203e6e3d2336e595600aba875a80ca606
--- /dev/null
+++ b/services/identity/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//services/service_manager/public/cpp/service.gni")
+import("//services/service_manager/public/service_manifest.gni")
+
+source_set("lib") {
+ sources = [
+ "identity_manager.cc",
+ "identity_manager.h",
+ "identity_service.cc",
+ "identity_service.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/signin/core/account_id",
+ "//components/signin/core/browser",
+ "//services/identity/public/interfaces",
+ "//services/service_manager/public/cpp",
+ "//services/service_manager/public/interfaces",
+ ]
+}
+
+service_manifest("manifest") {
+ name = "identity"
+ source = "manifest.json"
+}
« 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