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

Unified Diff: components/user_manager/BUILD.gn

Issue 403103005: components: Add GN Build files for component_updater and user_manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « components/component_updater/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/user_manager/BUILD.gn
diff --git a/components/user_manager/BUILD.gn b/components/user_manager/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..0e10f4adab752f4dc1813aeb52a48a0bd5e5f9b5
--- /dev/null
+++ b/components/user_manager/BUILD.gn
@@ -0,0 +1,34 @@
+# 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("user_manager") {
+ sources = [
+ "empty_user_info.cc",
+ "empty_user_info.h",
+ "user_info.cc",
+ "user_info.h",
+ "user_info_impl.cc",
+ "user_info_impl.h",
+ "user_manager_export.h",
+ ]
+
+ if (is_chromeos) {
+ sources += [
+ "user_image/user_image.cc",
+ "user_image/user_image.h",
+ "user_type.h",
+ ]
+ }
+
+ defines = [
+ "USER_MANAGER_IMPLEMENTATION",
+ ]
+
+ deps = [
+ "//base",
+ "//skia",
+ "//ui/gfx",
+ "//url",
+ ]
+}
« no previous file with comments | « components/component_updater/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698