summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/session_manager/core/BUILD.gn11
-rw-r--r--components/user_manager/BUILD.gn1
2 files changed, 12 insertions, 0 deletions
diff --git a/components/session_manager/core/BUILD.gn b/components/session_manager/core/BUILD.gn
new file mode 100644
index 0000000..3278385e
--- /dev/null
+++ b/components/session_manager/core/BUILD.gn
@@ -0,0 +1,11 @@
+# Copyright 2014 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.
+
+component("core") {
+ sources = [
+ "../session_manager_export.h",
+ "session_manager.cc",
+ "session_manager.h",
+ ]
+}
diff --git a/components/user_manager/BUILD.gn b/components/user_manager/BUILD.gn
index 17d1a6b..6703ea1 100644
--- a/components/user_manager/BUILD.gn
+++ b/components/user_manager/BUILD.gn
@@ -15,6 +15,7 @@ component("user_manager") {
deps = [
"//base",
+ "//components/session_manager/core",
"//skia",
"//ui/gfx",
"//url",