| 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', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'include_dirs': [ | 44 'include_dirs': [ |
| 45 '<(DEPTH)', | 45 '<(DEPTH)', |
| 46 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', | 46 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', |
| 47 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', | 47 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', |
| 48 ], | 48 ], |
| 49 'sources': [ '<@(user_manager_shared_sources)' ], | 49 'sources': [ '<@(user_manager_shared_sources)' ], |
| 50 'conditions': [ | 50 'conditions': [ |
| 51 ['chromeos == 1', { | 51 ['chromeos == 1', { |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 '<(DEPTH)/base/base.gyp:base_prefs', | 53 '<(DEPTH)/base/base.gyp:base_prefs', |
| 54 '<(DEPTH)/chromeos/chromeos.gyp:chromeos', |
| 54 '<(DEPTH)/components/components.gyp:session_manager_component', | 55 '<(DEPTH)/components/components.gyp:session_manager_component', |
| 55 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', | 56 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', |
| 57 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 56 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', | 58 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', |
| 57 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', | 59 '<(DEPTH)/ui/chromeos/ui_chromeos.gyp:ui_chromeos_strings', |
| 58 '<(DEPTH)/url/url.gyp:url_lib', | 60 '<(DEPTH)/url/url.gyp:url_lib', |
| 59 ], | 61 ], |
| 60 'sources': [ '<@(user_manager_chromeos_sources)' ], | 62 'sources': [ '<@(user_manager_chromeos_sources)' ], |
| 61 }], | 63 }], |
| 62 ], | 64 ], |
| 63 }], | 65 }], |
| 64 } | 66 } |
| OLD | NEW |