OLD | NEW |
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 'targets': [{ | 6 'targets': [{ |
7 'target_name': 'user_manager', | 7 'target_name': 'user_manager', |
8 'type': '<(component)', | 8 'type': '<(component)', |
9 'dependencies': [ | 9 'dependencies': [ |
10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
| 11 '../skia/skia.gyp:skia', |
| 12 '../ui/gfx/gfx.gyp:gfx', |
| 13 '../url/url.gyp:url_lib', |
11 ], | 14 ], |
12 'defines': [ | 15 'defines': [ |
13 'USER_MANAGER_IMPLEMENTATION', | 16 'USER_MANAGER_IMPLEMENTATION', |
14 ], | 17 ], |
15 'include_dirs': [ | 18 'include_dirs': [ |
16 '..', | 19 '..', |
17 ], | 20 ], |
18 'sources': [ | 21 'sources': [ |
| 22 'user_manager/user_image/user_image.cc', |
| 23 'user_manager/user_image/user_image.h', |
19 'user_manager/user_type.h', | 24 'user_manager/user_type.h', |
20 'user_manager/user_manager_export.h', | 25 'user_manager/user_manager_export.h', |
21 ], | 26 ], |
22 }], | 27 }], |
23 } | 28 } |
OLD | NEW |