| 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 17 matching lines...) Expand all Loading... |
| 28 "known_user.h", | 28 "known_user.h", |
| 29 "remove_user_delegate.h", | 29 "remove_user_delegate.h", |
| 30 "user.cc", | 30 "user.cc", |
| 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_names.cc", |
| 39 "user_names.h", |
| 38 "user_type.h", | 40 "user_type.h", |
| 39 ] | 41 ] |
| 40 deps += [ | 42 deps += [ |
| 41 "//components/prefs", | 43 "//components/prefs", |
| 42 "//components/session_manager/core", | 44 "//components/session_manager/core", |
| 43 "//google_apis", | 45 "//google_apis", |
| 44 "//url", | 46 "//url", |
| 45 ] | 47 ] |
| 46 } | 48 } |
| 47 } | 49 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 70 ] | 72 ] |
| 71 deps = [ | 73 deps = [ |
| 72 ":user_manager", | 74 ":user_manager", |
| 73 "//components/signin/core/account_id", | 75 "//components/signin/core/account_id", |
| 74 "//skia", | 76 "//skia", |
| 75 "//testing/gtest", | 77 "//testing/gtest", |
| 76 "//ui/gfx", | 78 "//ui/gfx", |
| 77 ] | 79 ] |
| 78 } | 80 } |
| 79 } | 81 } |
| OLD | NEW |