OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 component("user_manager") { | 5 component("user_manager") { |
6 sources = [ | 6 sources = [ |
7 "empty_user_info.cc", | 7 "empty_user_info.cc", |
8 "empty_user_info.h", | 8 "empty_user_info.h", |
9 "user_info.cc", | 9 "user_info.cc", |
10 "user_info.h", | 10 "user_info.h", |
(...skipping 20 matching lines...) Expand all Loading... |
31 "user.h", | 31 "user.h", |
32 "user_image/user_image.cc", | 32 "user_image/user_image.cc", |
33 "user_image/user_image.h", | 33 "user_image/user_image.h", |
34 "user_manager.cc", | 34 "user_manager.cc", |
35 "user_manager.h", | 35 "user_manager.h", |
36 "user_manager_base.cc", | 36 "user_manager_base.cc", |
37 "user_manager_base.h", | 37 "user_manager_base.h", |
38 "user_type.h", | 38 "user_type.h", |
39 ] | 39 ] |
40 deps += [ | 40 deps += [ |
41 "//base:prefs", | 41 "//components/prefs", |
42 "//components/session_manager/core", | 42 "//components/session_manager/core", |
43 "//google_apis", | 43 "//google_apis", |
44 "//url", | 44 "//url", |
45 ] | 45 ] |
46 } | 46 } |
47 } | 47 } |
48 | 48 |
49 source_set("test_support") { | 49 source_set("test_support") { |
50 testonly = true | 50 testonly = true |
51 if (is_chromeos) { | 51 if (is_chromeos) { |
52 sources = [ | 52 sources = [ |
53 "fake_user_manager.cc", | 53 "fake_user_manager.cc", |
54 "fake_user_manager.h", | 54 "fake_user_manager.h", |
55 ] | 55 ] |
56 deps = [ | 56 deps = [ |
57 ":user_manager", | 57 ":user_manager", |
58 "//base", | 58 "//base", |
59 "//chromeos:chromeos", | 59 "//chromeos:chromeos", |
60 "//components/signin/core/account_id", | 60 "//components/signin/core/account_id", |
61 "//skia", | 61 "//skia", |
62 "//ui/base", | 62 "//ui/base", |
63 ] | 63 ] |
64 } | 64 } |
65 } | 65 } |
OLD | NEW |