blob: 17d1a6b351cd5894635989e6a6819a97356ed01a [file] [log] [blame]
[email protected]8b7e37e42014-07-22 00:36:201# Copyright 2014 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
5component("user_manager") {
6 sources = [
7 "empty_user_info.cc",
8 "empty_user_info.h",
9 "user_info.cc",
10 "user_info.h",
11 "user_info_impl.cc",
12 "user_info_impl.h",
13 "user_manager_export.h",
14 ]
15
mukai77c14032014-10-13 18:24:4416 deps = [
17 "//base",
18 "//skia",
19 "//ui/gfx",
20 "//url",
21 ]
22
23 defines = [
24 "USER_MANAGER_IMPLEMENTATION",
25 ]
26
[email protected]8b7e37e42014-07-22 00:36:2027 if (is_chromeos) {
28 sources += [
mukai9fa77612014-10-10 00:23:2629 "remove_user_delegate.h",
30 "user_image/default_user_images.cc",
31 "user_image/default_user_images.h",
[email protected]8b7e37e42014-07-22 00:36:2032 "user_image/user_image.cc",
33 "user_image/user_image.h",
mukai9fa77612014-10-10 00:23:2634 "user.cc",
35 "user.h",
36 "user_manager.cc",
37 "user_manager.h",
38 "user_manager_base.cc",
39 "user_manager_base.h",
[email protected]8b7e37e42014-07-22 00:36:2040 "user_type.h",
41 ]
mukai77c14032014-10-13 18:24:4442 deps += [ "//ui/chromeos/strings" ]
[email protected]8b7e37e42014-07-22 00:36:2043 }
[email protected]8b7e37e42014-07-22 00:36:2044}