| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "password_store_default.cc", | 78 "password_store_default.cc", |
| 79 "password_store_default.h", | 79 "password_store_default.h", |
| 80 "password_store_sync.cc", | 80 "password_store_sync.cc", |
| 81 "password_store_sync.h", | 81 "password_store_sync.h", |
| 82 "password_syncable_service.cc", | 82 "password_syncable_service.cc", |
| 83 "password_syncable_service.h", | 83 "password_syncable_service.h", |
| 84 "psl_matching_helper.cc", | 84 "psl_matching_helper.cc", |
| 85 "psl_matching_helper.h", | 85 "psl_matching_helper.h", |
| 86 "statistics_table.cc", | 86 "statistics_table.cc", |
| 87 "statistics_table.h", | 87 "statistics_table.h", |
| 88 "store_result_filter.h", |
| 88 "test_affiliation_fetcher_factory.h", | 89 "test_affiliation_fetcher_factory.h", |
| 89 "webdata/logins_table.cc", | 90 "webdata/logins_table.cc", |
| 90 "webdata/logins_table.h", | 91 "webdata/logins_table.h", |
| 91 "webdata/logins_table_win.cc", | 92 "webdata/logins_table_win.cc", |
| 92 "webdata/password_web_data_service_win.cc", | 93 "webdata/password_web_data_service_win.cc", |
| 93 "webdata/password_web_data_service_win.h", | 94 "webdata/password_web_data_service_win.h", |
| 94 ] | 95 ] |
| 95 | 96 |
| 96 deps = [ | 97 deps = [ |
| 97 ":proto", | 98 ":proto", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 public_deps = [ | 150 public_deps = [ |
| 150 ":browser", | 151 ":browser", |
| 151 ] | 152 ] |
| 152 deps = [ | 153 deps = [ |
| 153 "//base", | 154 "//base", |
| 154 "//components/autofill/core/common", | 155 "//components/autofill/core/common", |
| 155 "//testing/gmock", | 156 "//testing/gmock", |
| 156 "//testing/gtest", | 157 "//testing/gtest", |
| 157 ] | 158 ] |
| 158 } | 159 } |
| OLD | NEW |