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 { | 7 { |
8 'target_name': 'password_manager_core_browser', | 8 'target_name': 'password_manager_core_browser', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'PASSWORD_MANAGER_ENABLE_SYNC', | 71 'PASSWORD_MANAGER_ENABLE_SYNC', |
72 ], | 72 ], |
73 'dependencies': [ | 73 'dependencies': [ |
74 '../sync/sync.gyp:sync', | 74 '../sync/sync.gyp:sync', |
75 ], | 75 ], |
76 'direct_dependent_settings': { | 76 'direct_dependent_settings': { |
77 'defines': [ | 77 'defines': [ |
78 'PASSWORD_MANAGER_ENABLE_SYNC', | 78 'PASSWORD_MANAGER_ENABLE_SYNC', |
79 ], | 79 ], |
80 }, | 80 }, |
| 81 'export_dependent_settings': [ |
| 82 '../sync/sync.gyp:sync', |
| 83 ], |
81 'sources': [ | 84 'sources': [ |
82 'password_manager/core/browser/password_syncable_service.cc', | 85 'password_manager/core/browser/password_syncable_service.cc', |
83 'password_manager/core/browser/password_syncable_service.h', | 86 'password_manager/core/browser/password_syncable_service.h', |
84 ], | 87 ], |
85 }], | 88 }], |
86 ], | 89 ], |
87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
88 'msvs_disabled_warnings': [ 4267, ], | 91 'msvs_disabled_warnings': [ 4267, ], |
89 }, | 92 }, |
90 { | 93 { |
91 'target_name': 'password_manager_core_browser_test_support', | 94 'target_name': 'password_manager_core_browser_test_support', |
92 'type': 'static_library', | 95 'type': 'static_library', |
93 'dependencies': [ | 96 'dependencies': [ |
94 'autofill_core_common', | 97 'autofill_core_common', |
| 98 'password_manager_core_browser', |
95 '../base/base.gyp:base', | 99 '../base/base.gyp:base', |
96 '../testing/gmock.gyp:gmock', | 100 '../testing/gmock.gyp:gmock', |
97 '../testing/gtest.gyp:gtest', | 101 '../testing/gtest.gyp:gtest', |
98 ], | 102 ], |
99 'include_dirs': [ | 103 'include_dirs': [ |
100 '..', | 104 '..', |
101 ], | 105 ], |
102 'sources': [ | 106 'sources': [ |
103 'password_manager/core/browser/mock_password_store.cc', | 107 'password_manager/core/browser/mock_password_store.cc', |
104 'password_manager/core/browser/mock_password_store.h', | 108 'password_manager/core/browser/mock_password_store.h', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 ], | 150 ], |
147 'sources': [ | 151 'sources': [ |
148 'password_manager/content/browser/content_password_manager_driver.cc
', | 152 'password_manager/content/browser/content_password_manager_driver.cc
', |
149 'password_manager/content/browser/content_password_manager_driver.h'
, | 153 'password_manager/content/browser/content_password_manager_driver.h'
, |
150 ], | 154 ], |
151 }, | 155 }, |
152 ], | 156 ], |
153 }], | 157 }], |
154 ], | 158 ], |
155 } | 159 } |
OLD | NEW |