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