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

Side by Side Diff: components/user_manager.gypi

Issue 824683002: UserManager stack refactoring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 11 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
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 { 5 {
6 'variables': { 6 'variables': {
7 # Cross-platform user_manager sources. 7 # Cross-platform user_manager sources.
8 'user_manager_shared_sources': [ 8 'user_manager_shared_sources': [
9 'user_manager/empty_user_info.cc', 9 'user_manager/empty_user_info.cc',
10 'user_manager/empty_user_info.h', 10 'user_manager/empty_user_info.h',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 '<(DEPTH)/components/components.gyp:session_manager_component', 55 '<(DEPTH)/components/components.gyp:session_manager_component',
56 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', 56 '<(DEPTH)/google_apis/google_apis.gyp:google_apis',
57 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', 57 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
58 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 58 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
59 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', 59 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings',
60 '<(DEPTH)/url/url.gyp:url_lib', 60 '<(DEPTH)/url/url.gyp:url_lib',
61 ], 61 ],
62 'sources': [ '<@(user_manager_chromeos_sources)' ], 62 'sources': [ '<@(user_manager_chromeos_sources)' ],
63 }], 63 }],
64 ], 64 ],
65 }], 65 },
66 {
67 # GN version: //components/user_manager:test_support
68 'target_name': 'user_manager_test_support',
69 'type': 'static_library',
70 'dependencies': [
71 '<(DEPTH)/base/base.gyp:base',
72 '<(DEPTH)/base/base.gyp:test_support_base',
73 '<(DEPTH)/testing/gmock.gyp:gmock',
74 '<(DEPTH)/testing/gtest.gyp:gtest',
75 'user_manager',
76 ],
77 'sources': [
78 'user_manager/fake_user_manager.cc',
79 'user_manager/fake_user_manager.h',
80 ],
81 },
82 ],
66 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698