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

Side by Side Diff: components/user_manager.gypi

Issue 379803004: Move UserInfo to user_manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « components/components.gyp ('k') | components/user_manager/user_info.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 { 5 {
6 'variables': {
7 # Cross-platform user_manager sources.
8 'user_manager_shared_sources': [
9 'user_manager/user_info.h',
10 ],
11 # Chrome OS user_manager sources.
12 'user_manager_chromeos_sources': [
13 'user_manager/user_type.h',
14 'user_manager/user_manager_export.h',
blundell 2014/07/09 12:23:49 this should be under shared sources, no?
Nikita (slow) 2014/07/09 12:40:16 Done.
15 ],
16 },
6 'targets': [{ 17 'targets': [{
7 'target_name': 'user_manager', 18 'target_name': 'user_manager',
8 'type': '<(component)', 19 'type': '<(component)',
9 'dependencies': [ 20 'dependencies': [
10 '../base/base.gyp:base', 21 '../base/base.gyp:base',
11 ], 22 ],
12 'defines': [ 23 'defines': [
13 'USER_MANAGER_IMPLEMENTATION', 24 'USER_MANAGER_IMPLEMENTATION',
14 ], 25 ],
15 'include_dirs': [ 26 'include_dirs': [
16 '..', 27 '..',
17 ], 28 ],
18 'sources': [ 29 'conditions': [
19 'user_manager/user_type.h', 30 ['use_ash==1', {
blundell 2014/07/09 12:23:49 is this condition necessary when the gypi is only
Nikita (slow) 2014/07/09 12:40:15 I was not sure where to leave this use_ash conditi
20 'user_manager/user_manager_export.h', 31 'sources': [ '<@(user_manager_shared_sources)' ],
32 'conditions': [
33 ['chromeos == 1', {
34 'sources': [ '<@(user_manager_chromeos_sources)' ],
35 }],
36 ],
37 }],
21 ], 38 ],
22 }], 39 }],
23 } 40 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/user_manager/user_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698