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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "password_store_consumer.cc", | 65 "password_store_consumer.cc", |
66 "password_store_consumer.h", | 66 "password_store_consumer.h", |
67 "password_store_default.cc", | 67 "password_store_default.cc", |
68 "password_store_default.h", | 68 "password_store_default.h", |
69 "password_store_sync.cc", | 69 "password_store_sync.cc", |
70 "password_store_sync.h", | 70 "password_store_sync.h", |
71 "password_syncable_service.cc", | 71 "password_syncable_service.cc", |
72 "password_syncable_service.h", | 72 "password_syncable_service.h", |
73 "psl_matching_helper.cc", | 73 "psl_matching_helper.cc", |
74 "psl_matching_helper.h", | 74 "psl_matching_helper.h", |
| 75 "statistics_table.cc", |
| 76 "statistics_table.h", |
75 "test_affiliation_fetcher_factory.h", | 77 "test_affiliation_fetcher_factory.h", |
76 "webdata/logins_table.cc", | 78 "webdata/logins_table.cc", |
77 "webdata/logins_table.h", | 79 "webdata/logins_table.h", |
78 "webdata/logins_table_win.cc", | 80 "webdata/logins_table_win.cc", |
79 "webdata/password_web_data_service_win.cc", | 81 "webdata/password_web_data_service_win.cc", |
80 "webdata/password_web_data_service_win.h", | 82 "webdata/password_web_data_service_win.h", |
81 ] | 83 ] |
82 | 84 |
83 deps = [ | 85 deps = [ |
84 ":proto", | 86 ":proto", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 public_deps = [ | 138 public_deps = [ |
137 ":browser", | 139 ":browser", |
138 ] | 140 ] |
139 deps = [ | 141 deps = [ |
140 "//base", | 142 "//base", |
141 "//components/autofill/core/common", | 143 "//components/autofill/core/common", |
142 "//testing/gmock", | 144 "//testing/gmock", |
143 "//testing/gtest", | 145 "//testing/gtest", |
144 ] | 146 ] |
145 } | 147 } |
OLD | NEW |