Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: components/user_manager/BUILD.gn

Issue 1534173003: ChromeOS user_manager: move all KnownUser code to separate file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/FindUsingSAML/IsUsingSAML/ Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/user_manager.gypi ('k') | components/user_manager/known_user.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
11 "user_info_impl.cc", 11 "user_info_impl.cc",
12 "user_info_impl.h", 12 "user_info_impl.h",
13 "user_manager_export.h", 13 "user_manager_export.h",
14 ] 14 ]
15 15
16 deps = [ 16 deps = [
17 "//base", 17 "//base",
18 "//components/signin/core/account_id", 18 "//components/signin/core/account_id",
19 "//skia", 19 "//skia",
20 "//ui/gfx", 20 "//ui/gfx",
21 ] 21 ]
22 22
23 defines = [ "USER_MANAGER_IMPLEMENTATION" ] 23 defines = [ "USER_MANAGER_IMPLEMENTATION" ]
24 24
25 if (is_chromeos) { 25 if (is_chromeos) {
26 sources += [ 26 sources += [
27 "known_user.cc",
28 "known_user.h",
27 "remove_user_delegate.h", 29 "remove_user_delegate.h",
28 "user.cc", 30 "user.cc",
29 "user.h", 31 "user.h",
30 "user_image/default_user_images.cc", 32 "user_image/default_user_images.cc",
31 "user_image/default_user_images.h", 33 "user_image/default_user_images.h",
32 "user_image/user_image.cc", 34 "user_image/user_image.cc",
33 "user_image/user_image.h", 35 "user_image/user_image.h",
34 "user_manager.cc", 36 "user_manager.cc",
35 "user_manager.h", 37 "user_manager.h",
36 "user_manager_base.cc", 38 "user_manager_base.cc",
(...skipping 22 matching lines...) Expand all
59 ] 61 ]
60 deps = [ 62 deps = [
61 ":user_manager", 63 ":user_manager",
62 "//base", 64 "//base",
63 "//components/signin/core/account_id", 65 "//components/signin/core/account_id",
64 "//skia", 66 "//skia",
65 "//ui/base", 67 "//ui/base",
66 ] 68 ]
67 } 69 }
68 } 70 }
OLDNEW
« no previous file with comments | « components/user_manager.gypi ('k') | components/user_manager/known_user.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698