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 ], | 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', |
49 ], | 49 ], |
50 'sources': [ '<@(user_manager_shared_sources)' ], | 50 'sources': [ '<@(user_manager_shared_sources)' ], |
51 'conditions': [ | 51 'conditions': [ |
52 ['chromeos == 1', { | 52 ['chromeos == 1', { |
53 'dependencies': [ | 53 'dependencies': [ |
| 54 '<(DEPTH)/base/base.gyp:base_prefs', |
54 '<(DEPTH)/components/components.gyp:session_manager_component', | 55 '<(DEPTH)/components/components.gyp:session_manager_component', |
55 '<(DEPTH)/components/prefs/prefs.gyp:prefs', | |
56 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', | 56 '<(DEPTH)/google_apis/google_apis.gyp:google_apis', |
57 '<(DEPTH)/url/url.gyp:url_lib', | 57 '<(DEPTH)/url/url.gyp:url_lib', |
58 ], | 58 ], |
59 'sources': [ '<@(user_manager_chromeos_sources)' ], | 59 'sources': [ '<@(user_manager_chromeos_sources)' ], |
60 }], | 60 }], |
61 ], | 61 ], |
62 }, | 62 }, |
63 { | 63 { |
64 # GN version: //components/user_manager:test_support | 64 # GN version: //components/user_manager:test_support |
65 'target_name': 'user_manager_test_support', | 65 'target_name': 'user_manager_test_support', |
66 'type': 'static_library', | 66 'type': 'static_library', |
67 'conditions': [ | 67 'conditions': [ |
68 ['chromeos == 1', { | 68 ['chromeos == 1', { |
69 'dependencies': [ | 69 'dependencies': [ |
70 '<(DEPTH)/base/base.gyp:base', | 70 '<(DEPTH)/base/base.gyp:base', |
71 '<(DEPTH)/base/base.gyp:test_support_base', | 71 '<(DEPTH)/base/base.gyp:test_support_base', |
72 '<(DEPTH)/skia/skia.gyp:skia', | 72 '<(DEPTH)/skia/skia.gyp:skia', |
73 '<(DEPTH)/testing/gmock.gyp:gmock', | 73 '<(DEPTH)/testing/gmock.gyp:gmock', |
74 '<(DEPTH)/testing/gtest.gyp:gtest', | 74 '<(DEPTH)/testing/gtest.gyp:gtest', |
75 'user_manager', | 75 'user_manager', |
76 ], | 76 ], |
77 'sources': [ | 77 'sources': [ |
78 'user_manager/fake_user_manager.cc', | 78 'user_manager/fake_user_manager.cc', |
79 'user_manager/fake_user_manager.h', | 79 'user_manager/fake_user_manager.h', |
80 ], | 80 ], |
81 }], | 81 }], |
82 ] | 82 ] |
83 },], | 83 },], |
84 } | 84 } |
OLD | NEW |