[email protected] | 8b7e37e4 | 2014-07-22 00:36:20 | [diff] [blame] | 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 |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | component("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 | |
mukai | 77c1403 | 2014-10-13 18:24:44 | [diff] [blame^] | 16 | deps = [ |
| 17 | "//base", |
| 18 | "//skia", |
| 19 | "//ui/gfx", |
| 20 | "//url", |
| 21 | ] |
| 22 | |
| 23 | defines = [ |
| 24 | "USER_MANAGER_IMPLEMENTATION", |
| 25 | ] |
| 26 | |
[email protected] | 8b7e37e4 | 2014-07-22 00:36:20 | [diff] [blame] | 27 | if (is_chromeos) { |
| 28 | sources += [ |
mukai | 9fa7761 | 2014-10-10 00:23:26 | [diff] [blame] | 29 | "remove_user_delegate.h", |
| 30 | "user_image/default_user_images.cc", |
| 31 | "user_image/default_user_images.h", |
[email protected] | 8b7e37e4 | 2014-07-22 00:36:20 | [diff] [blame] | 32 | "user_image/user_image.cc", |
| 33 | "user_image/user_image.h", |
mukai | 9fa7761 | 2014-10-10 00:23:26 | [diff] [blame] | 34 | "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] | 8b7e37e4 | 2014-07-22 00:36:20 | [diff] [blame] | 40 | "user_type.h", |
| 41 | ] |
mukai | 77c1403 | 2014-10-13 18:24:44 | [diff] [blame^] | 42 | deps += [ "//ui/chromeos/strings" ] |
[email protected] | 8b7e37e4 | 2014-07-22 00:36:20 | [diff] [blame] | 43 | } |
[email protected] | 8b7e37e4 | 2014-07-22 00:36:20 | [diff] [blame] | 44 | } |