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

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

Issue 824683002: UserManager stack refactoring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test fixed. Created 5 years, 10 months 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/fake_user_manager.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",
(...skipping 29 matching lines...) Expand all
40 "//chromeos:chromeos", 40 "//chromeos:chromeos",
41 "//components/session_manager/core", 41 "//components/session_manager/core",
42 "//google_apis", 42 "//google_apis",
43 "//ui/base", 43 "//ui/base",
44 "//ui/chromeos/resources", 44 "//ui/chromeos/resources",
45 "//ui/chromeos/strings", 45 "//ui/chromeos/strings",
46 "//url", 46 "//url",
47 ] 47 ]
48 } 48 }
49 } 49 }
50
51 source_set("test_support") {
52 testonly = true
53 if (is_chromeos) {
54 sources = [
55 "fake_user_manager.cc",
56 "fake_user_manager.h",
57 ]
58 deps = [
59 ":user_manager",
60 "//base",
61 "//skia",
62 ]
63 }
64 }
OLDNEW
« no previous file with comments | « components/user_manager.gypi ('k') | components/user_manager/fake_user_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698