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

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

Issue 2545723003: ash: Add SessionController/Client mojo interfaces (Closed)
Patch Set: rebase, use ash_util::GetAshServiceName Created 4 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/session_manager/BUILD.gn ('k') | no next file » | 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 "user_info.cc", 7 "user_info.cc",
8 "user_info.h", 8 "user_info.h",
9 "user_info_impl.cc", 9 "user_info_impl.cc",
10 "user_info_impl.h", 10 "user_info_impl.h",
11 "user_manager_export.h", 11 "user_manager_export.h",
12 "user_names.cc", 12 "user_names.cc",
13 "user_names.h", 13 "user_names.h",
14 "user_type.h",
14 ] 15 ]
15 16
16 deps = [ 17 deps = [
17 "//base", 18 "//base",
18 "//components/signin/core/account_id", 19 "//components/signin/core/account_id",
19 "//google_apis", 20 "//google_apis",
20 "//skia", 21 "//skia",
21 "//ui/gfx", 22 "//ui/gfx",
22 ] 23 ]
23 24
24 defines = [ "USER_MANAGER_IMPLEMENTATION" ] 25 defines = [ "USER_MANAGER_IMPLEMENTATION" ]
25 26
26 if (is_chromeos) { 27 if (is_chromeos) {
27 sources += [ 28 sources += [
28 "known_user.cc", 29 "known_user.cc",
29 "known_user.h", 30 "known_user.h",
30 "remove_user_delegate.h", 31 "remove_user_delegate.h",
31 "user.cc", 32 "user.cc",
32 "user.h", 33 "user.h",
33 "user_image/user_image.cc", 34 "user_image/user_image.cc",
34 "user_image/user_image.h", 35 "user_image/user_image.h",
35 "user_manager.cc", 36 "user_manager.cc",
36 "user_manager.h", 37 "user_manager.h",
37 "user_manager_base.cc", 38 "user_manager_base.cc",
38 "user_manager_base.h", 39 "user_manager_base.h",
39 "user_type.h",
40 ] 40 ]
41 deps += [ 41 deps += [
42 "//components/prefs", 42 "//components/prefs",
43 "//url", 43 "//url",
44 ] 44 ]
45 } 45 }
46 } 46 }
47 47
48 if (is_chromeos) { 48 if (is_chromeos) {
49 source_set("test_support") { 49 source_set("test_support") {
(...skipping 19 matching lines...) Expand all
69 ] 69 ]
70 deps = [ 70 deps = [
71 ":user_manager", 71 ":user_manager",
72 "//components/signin/core/account_id", 72 "//components/signin/core/account_id",
73 "//skia", 73 "//skia",
74 "//testing/gtest", 74 "//testing/gtest",
75 "//ui/gfx", 75 "//ui/gfx",
76 ] 76 ]
77 } 77 }
78 } 78 }
OLDNEW
« no previous file with comments | « components/session_manager/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698