| 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 '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', |
| 11 'user_manager/user_info.cc', | 12 'user_manager/user_info.cc', |
| 12 'user_manager/user_info.h', | 13 'user_manager/user_info.h', |
| 13 'user_manager/user_info_impl.cc', | 14 'user_manager/user_info_impl.cc', |
| 14 'user_manager/user_info_impl.h', | 15 'user_manager/user_info_impl.h', |
| 15 'user_manager/user_manager_export.h', | 16 'user_manager/user_manager_export.h', |
| 16 ], | 17 ], |
| 17 # Chrome OS user_manager sources. | 18 # Chrome OS user_manager sources. |
| 18 'user_manager_chromeos_sources': [ | 19 'user_manager_chromeos_sources': [ |
| 19 'user_manager/remove_user_delegate.h', | 20 'user_manager/remove_user_delegate.h', |
| 20 'user_manager/user.cc', | 21 'user_manager/user.cc', |
| 21 'user_manager/user.h', | 22 'user_manager/user.h', |
| 22 'user_manager/user_image/default_user_images.cc', | 23 'user_manager/user_image/default_user_images.cc', |
| 23 'user_manager/user_image/default_user_images.h', | 24 'user_manager/user_image/default_user_images.h', |
| 24 'user_manager/user_image/user_image.cc', | 25 'user_manager/user_image/user_image.cc', |
| 25 'user_manager/user_image/user_image.h', | 26 'user_manager/user_image/user_image.h', |
| 26 'user_manager/user_manager.cc', | 27 'user_manager/user_manager.cc', |
| 27 'user_manager/user_manager.h', | 28 'user_manager/user_manager.h', |
| 28 'user_manager/user_manager_base.cc', | 29 'user_manager/user_manager_base.cc', |
| 29 'user_manager/user_manager_base.h', | 30 'user_manager/user_manager_base.h', |
| 30 'user_manager/user_type.h', | 31 'user_manager/user_type.h', |
| 31 ], | 32 ], |
| 32 }, | 33 }, |
| 33 'targets': [{ | 34 'targets': [{ |
| 34 'target_name': 'user_manager', | 35 'target_name': 'user_manager', |
| 35 'type': '<(component)', | 36 'type': '<(component)', |
| 36 'dependencies': [ | 37 'dependencies': [ |
| 37 '<(DEPTH)/base/base.gyp:base', | 38 '<(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 Loading... |
| 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 } |
| OLD | NEW |