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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "password_store.h", | 60 "password_store.h", |
61 "password_store_change.h", | 61 "password_store_change.h", |
62 "password_store_consumer.cc", | 62 "password_store_consumer.cc", |
63 "password_store_consumer.h", | 63 "password_store_consumer.h", |
64 "password_store_default.cc", | 64 "password_store_default.cc", |
65 "password_store_default.h", | 65 "password_store_default.h", |
66 "password_store_sync.cc", | 66 "password_store_sync.cc", |
67 "password_store_sync.h", | 67 "password_store_sync.h", |
68 "psl_matching_helper.cc", | 68 "psl_matching_helper.cc", |
69 "psl_matching_helper.h", | 69 "psl_matching_helper.h", |
| 70 "test_affiliation_fetcher_factory.h", |
70 "webdata/logins_table.cc", | 71 "webdata/logins_table.cc", |
71 "webdata/logins_table.h", | 72 "webdata/logins_table.h", |
72 "webdata/logins_table_win.cc", | 73 "webdata/logins_table_win.cc", |
73 "webdata/password_web_data_service_win.cc", | 74 "webdata/password_web_data_service_win.cc", |
74 "webdata/password_web_data_service_win.h", | 75 "webdata/password_web_data_service_win.h", |
75 ] | 76 ] |
76 | 77 |
77 deps = [ | 78 deps = [ |
78 ":proto", | 79 ":proto", |
79 "//base", | 80 "//base", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 112 |
112 proto_library("proto") { | 113 proto_library("proto") { |
113 sources = [ | 114 sources = [ |
114 "affiliation_api.proto", | 115 "affiliation_api.proto", |
115 ] | 116 ] |
116 } | 117 } |
117 | 118 |
118 source_set("test_support") { | 119 source_set("test_support") { |
119 testonly = true | 120 testonly = true |
120 sources = [ | 121 sources = [ |
| 122 "fake_affiliation_fetcher.cc", |
| 123 "fake_affiliation_fetcher.h", |
121 "mock_password_store.cc", | 124 "mock_password_store.cc", |
122 "mock_password_store.h", | 125 "mock_password_store.h", |
123 "password_form_data.cc", | 126 "password_form_data.cc", |
124 "password_form_data.h", | 127 "password_form_data.h", |
125 "stub_password_manager_client.cc", | 128 "stub_password_manager_client.cc", |
126 "stub_password_manager_client.h", | 129 "stub_password_manager_client.h", |
127 "stub_password_manager_driver.cc", | 130 "stub_password_manager_driver.cc", |
128 "stub_password_manager_driver.h", | 131 "stub_password_manager_driver.h", |
129 "test_password_store.cc", | 132 "test_password_store.cc", |
130 "test_password_store.h", | 133 "test_password_store.h", |
131 ] | 134 ] |
132 | 135 |
133 public_deps = [ | 136 public_deps = [ |
134 ":browser", | 137 ":browser", |
135 ] | 138 ] |
136 deps = [ | 139 deps = [ |
137 "//base", | 140 "//base", |
138 "//components/autofill/core/common", | 141 "//components/autofill/core/common", |
139 "//testing/gmock", | 142 "//testing/gmock", |
140 "//testing/gtest", | 143 "//testing/gtest", |
141 ] | 144 ] |
142 } | 145 } |
OLD | NEW |