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

Side by Side Diff: components/user_manager.gypi

Issue 402133003: [cros, user_manager] Move default user images constants and helper functions out of src/chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-format Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser_chromeos.gypi ('k') | components/user_manager/DEPS » ('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_info.h', 11 'user_manager/user_info.h',
12 'user_manager/user_info.cc', 12 'user_manager/user_info.cc',
13 'user_manager/user_info_impl.cc', 13 'user_manager/user_info_impl.cc',
14 'user_manager/user_info_impl.h', 14 'user_manager/user_info_impl.h',
15 'user_manager/user_manager_export.h', 15 'user_manager/user_manager_export.h',
16 ], 16 ],
17 # Chrome OS user_manager sources. 17 # Chrome OS user_manager sources.
18 'user_manager_chromeos_sources': [ 18 'user_manager_chromeos_sources': [
19 'user_manager/user_image/default_user_images.cc',
20 'user_manager/user_image/default_user_images.h',
19 'user_manager/user_image/user_image.cc', 21 'user_manager/user_image/user_image.cc',
20 'user_manager/user_image/user_image.h', 22 'user_manager/user_image/user_image.h',
21 'user_manager/user_type.h', 23 'user_manager/user_type.h',
22 ], 24 ],
23 }, 25 },
24 'targets': [{ 26 'targets': [{
25 'target_name': 'user_manager', 27 'target_name': 'user_manager',
26 'type': '<(component)', 28 'type': '<(component)',
27 'dependencies': [ 29 'dependencies': [
28 '../base/base.gyp:base', 30 '<(DEPTH)/base/base.gyp:base',
29 '../skia/skia.gyp:skia', 31 '<(DEPTH)/skia/skia.gyp:skia',
30 '../ui/gfx/gfx.gyp:gfx', 32 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
31 '../url/url.gyp:url_lib', 33 '<(DEPTH)/url/url.gyp:url_lib',
32 ], 34 ],
33 'defines': [ 35 'defines': [
34 'USER_MANAGER_IMPLEMENTATION', 36 'USER_MANAGER_IMPLEMENTATION',
35 ], 37 ],
36 'include_dirs': [ 38 'include_dirs': [
37 '..', 39 '<(DEPTH)',
40 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
41 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings',
38 ], 42 ],
39 'sources': [ '<@(user_manager_shared_sources)' ], 43 'sources': [ '<@(user_manager_shared_sources)' ],
40 'conditions': [ 44 'conditions': [
41 ['chromeos == 1', { 45 ['chromeos == 1', {
46 'dependencies': [
47 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
48 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings',
49 ],
42 'sources': [ '<@(user_manager_chromeos_sources)' ], 50 'sources': [ '<@(user_manager_chromeos_sources)' ],
43 }], 51 }],
44 ], 52 ],
45 }], 53 }],
46 } 54 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_chromeos.gypi ('k') | components/user_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698