| 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_id.cc", |
| 9 "user_id.h", | 10 "user_id.h", |
| 10 "user_info.cc", | 11 "user_info.cc", |
| 11 "user_info.h", | 12 "user_info.h", |
| 12 "user_info_impl.cc", | 13 "user_info_impl.cc", |
| 13 "user_info_impl.h", | 14 "user_info_impl.h", |
| 14 "user_manager_export.h", | 15 "user_manager_export.h", |
| 15 ] | 16 ] |
| 16 | 17 |
| 17 deps = [ | 18 deps = [ |
| 18 "//base", | 19 "//base", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "fake_user_manager.cc", | 58 "fake_user_manager.cc", |
| 58 "fake_user_manager.h", | 59 "fake_user_manager.h", |
| 59 ] | 60 ] |
| 60 deps = [ | 61 deps = [ |
| 61 ":user_manager", | 62 ":user_manager", |
| 62 "//base", | 63 "//base", |
| 63 "//skia", | 64 "//skia", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| 66 } | 67 } |
| OLD | NEW |