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

Side by Side Diff: components/user_manager.gypi

Issue 1412813003: This CL replaces user_manager::UserID with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@468875--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Create-AccountID-structure-part2--user_names
Patch Set: Fix Win GN build. Created 5 years, 1 month 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 | « chromeos/login/auth/user_context.cc ('k') | components/user_manager/BUILD.gn » ('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 { 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',
11 'user_manager/user_id.h',
12 'user_manager/user_info.cc', 11 'user_manager/user_info.cc',
13 'user_manager/user_info.h', 12 'user_manager/user_info.h',
14 'user_manager/user_info_impl.cc', 13 'user_manager/user_info_impl.cc',
15 'user_manager/user_info_impl.h', 14 'user_manager/user_info_impl.h',
16 'user_manager/user_manager_export.h', 15 'user_manager/user_manager_export.h',
17 ], 16 ],
18 # Chrome OS user_manager sources. 17 # Chrome OS user_manager sources.
19 'user_manager_chromeos_sources': [ 18 'user_manager_chromeos_sources': [
20 'user_manager/remove_user_delegate.h', 19 'user_manager/remove_user_delegate.h',
21 'user_manager/user.cc', 20 'user_manager/user.cc',
22 'user_manager/user.h', 21 'user_manager/user.h',
23 'user_manager/user_image/default_user_images.cc', 22 'user_manager/user_image/default_user_images.cc',
24 'user_manager/user_image/default_user_images.h', 23 'user_manager/user_image/default_user_images.h',
25 'user_manager/user_image/user_image.cc', 24 'user_manager/user_image/user_image.cc',
26 'user_manager/user_image/user_image.h', 25 'user_manager/user_image/user_image.h',
27 'user_manager/user_manager.cc', 26 'user_manager/user_manager.cc',
28 'user_manager/user_manager.h', 27 'user_manager/user_manager.h',
29 'user_manager/user_manager_base.cc', 28 'user_manager/user_manager_base.cc',
30 'user_manager/user_manager_base.h', 29 'user_manager/user_manager_base.h',
31 'user_manager/user_type.h', 30 'user_manager/user_type.h',
32 ], 31 ],
33 }, 32 },
34 'targets': [{ 33 'targets': [{
35 'target_name': 'user_manager', 34 'target_name': 'user_manager',
36 'type': '<(component)', 35 'type': '<(component)',
37 'dependencies': [ 36 'dependencies': [
38 '<(DEPTH)/base/base.gyp:base', 37 '<(DEPTH)/base/base.gyp:base',
38 '<(DEPTH)/components/components.gyp:signin_core_account_id',
39 '<(DEPTH)/skia/skia.gyp:skia', 39 '<(DEPTH)/skia/skia.gyp:skia',
40 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 40 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
41 ], 41 ],
42 'defines': [ 42 'defines': [
43 'USER_MANAGER_IMPLEMENTATION', 43 'USER_MANAGER_IMPLEMENTATION',
44 ], 44 ],
45 'include_dirs': [ 45 'include_dirs': [
46 '<(DEPTH)', 46 '<(DEPTH)',
47 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 47 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
48 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', 48 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings',
(...skipping 30 matching lines...) Expand all
79 'user_manager', 79 'user_manager',
80 ], 80 ],
81 'sources': [ 81 'sources': [
82 'user_manager/fake_user_manager.cc', 82 'user_manager/fake_user_manager.cc',
83 'user_manager/fake_user_manager.h', 83 'user_manager/fake_user_manager.h',
84 ], 84 ],
85 }], 85 }],
86 ] 86 ]
87 },], 87 },],
88 } 88 }
OLDNEW
« no previous file with comments | « chromeos/login/auth/user_context.cc ('k') | components/user_manager/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698